-
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
[core] Only one LambdaRuntime.run()
can be called at a time (fix #507)
#508
base: main
Are you sure you want to change the base?
Conversation
Compiler crashes on nightly build has been reported here |
CI is now green, except API Breakage, which is expected. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great spot! Thanks for tackling this one.
Make the atomix check on run() instead of init()
…untime into sebsto/fix_507
@fabianfett
|
LambdaRuntime.run()
can be called at a time (fix #507)
LambdaRuntime.run()
can be called at a time (fix #507)LambdaRuntime.run()
can be called at a time (fix #507)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some golden rules:
- we should make sure we never add enums that we want to extend after the release to our public API
- use structured concurrency when possible
await #expect(throws: Never.self) { | ||
|
||
let nonReturningTask = Task.detached(priority: .userInitiated) { | ||
try await runtime2.run() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you never check if this throws.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a problem in the current code, run()
never returns, even when cancelled.
This call blocks
await #expect(throws: CancellationError.self) {
_ = try await nonReturningTask.value
}
Co-authored-by: Fabian Fett <[email protected]>
Co-authored-by: Fabian Fett <[email protected]>
Co-authored-by: Fabian Fett <[email protected]>
Co-authored-by: Fabian Fett <[email protected]>
Co-authored-by: Fabian Fett <[email protected]>
Co-authored-by: Fabian Fett <[email protected]>
Co-authored-by: Fabian Fett <[email protected]>
This is a proposal to fix issue #507
changes
LambdaRuntime.init()
uses aMutex<Bool>
to make sure only one instance is createdLambdaRuntime.init()
can now throw an error in case an instance already exists (I did not usefatalError()
to make it easier to test)convenience init()
methods catch possible errors instead of re-throwing it to a void breaking the user-facing APILambdaRuntimeError
toLambdaRuntimeClientError
LambdaRuntimeError
to represent the double initialization error