Skip to content

Commit 54d2fd1

Browse files
committed
merge with recent changes
1 parent 0e374ab commit 54d2fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/AWSLambdaRuntime/LambdaRuntime.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import Foundation
2626
// We need `@unchecked` Sendable here, as `NIOLockedValueBox` does not understand `sending` today.
2727
// We don't want to use `NIOLockedValueBox` here anyway. We would love to use Mutex here, but this
2828
// sadly crashes the compiler today.
29-
public final class LambdaRuntime<Handler>: Service, @unchecked Sendable where Handler: StreamingLambdaHandler {
29+
public final class LambdaRuntime<Handler>: @unchecked Sendable where Handler: StreamingLambdaHandler {
3030
// TODO: We want to change this to Mutex as soon as this doesn't crash the Swift compiler on Linux anymore
3131
@usableFromInline
3232
let handlerMutex: NIOLockedValueBox<Handler?>

0 commit comments

Comments
 (0)