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 67006b8 commit ee32152Copy full SHA for ee32152
lib/lib-storage/src/Upload.ts
@@ -200,9 +200,9 @@ export class Upload extends EventEmitter {
200
}
201
202
private async __createMultipartUpload(): Promise<CreateMultipartUploadCommandOutput> {
203
+ const requestChecksumCalculation = await this.client.config.requestChecksumCalculation();
204
if (!this.createMultiPartPromise) {
205
const createCommandParams = { ...this.params, Body: undefined };
- const requestChecksumCalculation = await this.client.config.requestChecksumCalculation();
206
if (requestChecksumCalculation === "WHEN_SUPPORTED") {
207
createCommandParams.ChecksumAlgorithm = ChecksumAlgorithm.CRC32;
208
0 commit comments