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 27ac22d commit a1ee6c1Copy full SHA for a1ee6c1
Tests/AWSLambdaRuntimeCoreTests/LambdaRuntimeClientTests.swift
@@ -123,8 +123,8 @@ struct LambdaRuntimeClientTests {
123
try await withThrowingTaskGroup(of: Void.self) { group in
124
group.addTask {
125
while true {
126
- print("Waiting")
127
let (_, writer) = try await runtimeClient.nextInvocation()
+ // Wrap this is a task so cancellation isn't propagated to the write calls
128
try await Task {
129
try await writer.write(ByteBuffer(string: "hello"))
130
try await writer.finish()
0 commit comments