Skip to content

Add inlinable where potentially usefull #511

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

Merged
merged 3 commits into from
Mar 21, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix CI
  • Loading branch information
fabianfett committed Mar 20, 2025
commit a53b7b7468f2f3fd1d49588b067b4ab31d200d15
2 changes: 2 additions & 0 deletions Sources/AWSLambdaRuntime/LambdaRuntime.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ public final class LambdaRuntime<Handler>: @unchecked Sendable where Handler: St
// TODO: We want to change this to Mutex as soon as this doesn't crash the Swift compiler on Linux anymore
@usableFromInline
let handlerMutex: NIOLockedValueBox<Handler?>
@usableFromInline
let logger: Logger
@usableFromInline
let eventLoop: EventLoop

public init(
Expand Down
Loading