Skip to content

Commit 89e6400

Browse files
authored
Merge pull request #2710 from gchq/dev/improve-upload-stability
Improve `Upload` stability
2 parents 51079a3 + e859be9 commit 89e6400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/clients/s3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ export async function putObjectStream(
4545
client: await getS3Client(),
4646
params: { Bucket: bucket, Key: key, Body: body, Metadata: metadata },
4747
queueSize: 4,
48-
partSize: 1024 * 1024 * 64,
4948
leavePartsOnError: false,
5049
})
50+
log.debug({ key, bucket, metadata }, 'Upload created.')
5151

5252
let fileSize = 0
5353

0 commit comments

Comments
 (0)