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.
1 parent 70dc8c1 commit b1527ffCopy full SHA for b1527ff
Tests/AWSLambdaRuntimeTests/LambdaRuntimeTests.swift
@@ -50,7 +50,8 @@ struct LambdaRuntimeTests {
50
}
51
52
// wait a small amount to ensure runtime1 task is started
53
- try await Task.sleep(for: .seconds(1))
+ // on GH Actions, it might take a bit longer to start the runtime
54
+ try await Task.sleep(for: .seconds(2))
55
56
// Running the second runtime should trigger LambdaRuntimeError
57
await #expect(throws: LambdaRuntimeError.self) {
0 commit comments