Skip to content
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

Open
wants to merge 26 commits into
base: main
Choose a base branch
from

Conversation

sebsto
Copy link
Contributor

@sebsto sebsto commented Mar 14, 2025

This is a proposal to fix issue #507

changes

  • LambdaRuntime.init() uses a Mutex<Bool> to make sure only one instance is created
  • LambdaRuntime.init() can now throw an error in case an instance already exists (I did not use fatalError() to make it easier to test)
  • All convenience init() methods catch possible errors instead of re-throwing it to a void breaking the user-facing API
  • Renamed existing LambdaRuntimeError to LambdaRuntimeClientError
  • Introduced a new type LambdaRuntimeError to represent the double initialization error

@sebsto sebsto added kind/bug Feature doesn't work as expected. 🔨 semver/patch No public API change. labels Mar 14, 2025
@sebsto sebsto added this to the 2.0 milestone Mar 14, 2025
@sebsto sebsto requested a review from fabianfett March 14, 2025 12:54
@sebsto sebsto self-assigned this Mar 14, 2025
@sebsto
Copy link
Contributor Author

sebsto commented Mar 14, 2025

Compiler crashes on nightly build has been reported here
swiftlang/swift#80020

@sebsto
Copy link
Contributor Author

sebsto commented Mar 15, 2025

CI is now green, except API Breakage, which is expected.

@sebsto sebsto changed the title [core] Make LambdaRuntime a singleton without breaking the API (fix #507) [core] Make LambdaRuntime a singleton (fix #507) Mar 16, 2025
@sebsto sebsto added ⚠️ semver/major Breaks existing public API. and removed 🔨 semver/patch No public API change. labels Mar 16, 2025
Copy link
Member

@fabianfett fabianfett left a 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.

@sebsto
Copy link
Contributor Author

sebsto commented Mar 19, 2025

@fabianfett
I changed

  • Mutex for Atomic
  • Test is now on run() and not on init()
  • LamabdaRuntimeError returned and is now public + one additional error case
  • unit test is adjusted and pass

@sebsto sebsto requested a review from fabianfett March 19, 2025 19:50
@sebsto sebsto changed the title [core] Make LambdaRuntime a singleton (fix #507) [core] Only once LambdaRuntime.run() can be called at a time (fix #507) Mar 19, 2025
@sebsto sebsto changed the title [core] Only once LambdaRuntime.run() can be called at a time (fix #507) [core] Only one LambdaRuntime.run() can be called at a time (fix #507) Mar 19, 2025
Copy link
Member

@fabianfett fabianfett left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some golden rules:

  1. we should make sure we never add enums that we want to extend after the release to our public API
  2. use structured concurrency when possible

await #expect(throws: Never.self) {

let nonReturningTask = Task.detached(priority: .userInitiated) {
try await runtime2.run()
Copy link
Member

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.

Copy link
Contributor Author

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
            }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Feature doesn't work as expected. ⚠️ semver/major Breaks existing public API.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants