We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
try
runtime.init()
1 parent e445f90 commit 0509eaaCopy full SHA for 0509eaa
readme.md
@@ -248,7 +248,7 @@ struct SendNumbersWithPause: StreamingLambdaHandler {
248
}
249
250
251
-let runtime = try LambdaRuntime.init(handler: SendNumbersWithPause())
+let runtime = LambdaRuntime.init(handler: SendNumbersWithPause())
252
try await runtime.run()
253
```
254
@@ -328,7 +328,7 @@ struct BackgroundProcessingHandler: LambdaWithBackgroundProcessingHandler {
328
329
330
let adapter = LambdaCodableAdapter(handler: BackgroundProcessingHandler())
331
-let runtime = try LambdaRuntime.init(handler: adapter)
+let runtime = LambdaRuntime.init(handler: adapter)
332
333
334
0 commit comments