Skip to content

Commit

Permalink
Fix testMultipleUpload
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Aug 6, 2023
1 parent 45ea8bf commit 8e2f3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/SotoTests/Services/S3/S3Tests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class S3Tests: XCTestCase {
func testMultipleUpload() async throws {
let name = TestEnvironment.generateResourceName()
try await self.testBucket(name, s3: Self.s3.with(timeout: .minutes(2))) { name in
_ = try await(0..<32).concurrentMap {
_ = try await(0..<32).concurrentMap(maxConcurrentTasks: 8) {
let body = "testMultipleUpload - " + $0.description
let filename = "file" + $0.description
_ = try await Self.s3.putObject(
Expand Down

0 comments on commit 8e2f3e0

Please sign in to comment.