Skip to content

Commit 6d02848

Browse files
author
Sebastien Stormacq
committed
fix test
1 parent 8aa9a46 commit 6d02848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/AWSLambdaRuntime/Lambda+LocalServer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ internal struct LambdaHTTPServer {
567567
/// (one instance to serve requests from the Lambda function and one instance to serve requests from the client invoking the lambda function).
568568
internal final class Pool<T>: AsyncSequence, AsyncIteratorProtocol, Sendable where T: Sendable {
569569
private let poolName: String
570-
internal init(name: String) { self.poolName = name }
570+
internal init(name: String = "Pool") { self.poolName = name }
571571

572572
typealias Element = T
573573

0 commit comments

Comments
 (0)