We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59a9a18 commit 207905cCopy full SHA for 207905c
Sources/AWSLambdaRuntimeCore/LambdaRuntime.swift
@@ -85,7 +85,8 @@ public final class LambdaRuntime<Handler>: @unchecked Sendable where Handler: St
85
#if DEBUG
86
// we're not running on Lambda and we're compiled in DEBUG mode,
87
// let's start a local server for testing
88
- try await Lambda.withLocalServer(invocationEndpoint: Lambda.env("LOCAL_LAMBDA_SERVER_INVOCATION_ENDPOINT")) {
+ try await Lambda.withLocalServer(invocationEndpoint: Lambda.env("LOCAL_LAMBDA_SERVER_INVOCATION_ENDPOINT"))
89
+ {
90
91
try await LambdaRuntimeClient.withRuntimeClient(
92
configuration: .init(ip: "127.0.0.1", port: 7000),
0 commit comments