-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support swift-service-lifecycle #374
Comments
We started the implementation with these two PR
These two PR have unresolved issues.
/swift/lambda/swift-aws-lambda-runtime/Sources/AWSLambdaRuntimeCore/LambdaRuntimeClient.swift:343:38: warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
341 | defer {
342 | for continuation in array {
343 | continuation.resume(returning: handler)
| |- warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
| `- note: 'self'-isolated 'handler' is passed as a 'sending' parameter; Uses in callee may race with later 'self'-isolated uses
344 | }
345 | }
|
Do we want to use package traits here? https://github.com/swiftlang/swift-evolution/blob/main/proposals/0450-swiftpm-package-traits.md cc @FranzBusch |
A big part has been landed yes. Not all of it. I’ll keep this for the example and the actual structure that implements the Service protocol |
The missing part is graceful shutdown support? |
We need to add
Points 1. and 2. are in the PR I closed and I will submit a separate PR for these. IMHO, when the Ideally, we must be sure than any in flight user handler has the time to return a response. But the Lambda service will take care to re-create a runtime environment if one fails to return a response or error. So in this specific context, it is not that important to cleanly shutdown. |
swift-aws-lambda-runtime/Sources/AWSLambdaRuntime/LambdaRuntime+ServiceLifecycle.swift Line 18 in bf02bce
|
Excellent I missed it. Thank you |
The code on the
main
branch currently does not support Swift Service Lifecycle.The text was updated successfully, but these errors were encountered: