Skip to content

Commit 87c0748

Browse files
committed
fix swift format
1 parent 1399f18 commit 87c0748

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Sources/AWSLambdaRuntimeCore/Lambda+LocalServer.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@ extension Lambda {
5656
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Void, any Error>) in
5757
group.addTask {
5858
do {
59-
try await LambdaHttpServer(invocationEndpoint: invocationEndpoint).start(continuation: continuation)
59+
try await LambdaHttpServer(invocationEndpoint: invocationEndpoint).start(
60+
continuation: continuation
61+
)
6062
} catch {
6163
continuation.resume(throwing: error)
62-
}
64+
}
6365
}
6466
}
6567
// now that server is started, run the Lambda function itself

0 commit comments

Comments
 (0)