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 1be86f8 commit 3fa7116Copy full SHA for 3fa7116
1 file changed
packages/publisher/s3/src/PublisherS3.ts
@@ -48,8 +48,8 @@ export default class PublisherS3 extends PublisherStatic<PublisherS3Config> {
48
region: this.config.region,
49
endpoint: this.config.endpoint,
50
forcePathStyle: !!this.config.s3ForcePathStyle,
51
- requestChecksumCalculation: this.config.requestChecksumCalculation || "WHEN_SUPPORTED",
52
- responseChecksumValidation: this.config.responseChecksumValidation || "WHEN_SUPPORTED",
+ requestChecksumCalculation: this.config.requestChecksumCalculation || "WHEN_SUPPORTED" as const,
+ responseChecksumValidation: this.config.responseChecksumValidation || "WHEN_SUPPORTED" as const,
53
});
54
55
d('creating s3 client with options:', this.config);
0 commit comments