Skip to content

Commit 46b88e9

Browse files
committed
chore(middleware-flexible-checksums): supplemental docs link
1 parent 539608d commit 46b88e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/middleware-flexible-checksums/src/middleware-md5-fallback.e2e.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// packages/middleware-flexible-checksums/src/middleware-md5-fallback.e2e.spec.ts
1+
// see supplemental-docs/MD5_FALLBACK for more details
22
import {
33
CreateBucketCommand,
44
DeleteBucketCommand,

supplemental-docs/MD5_FALLBACK.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function createS3ClientWithMD5() {
3232
client.middlewareStack.add(
3333
(next, context) => async (args) => {
3434
// Check if this is a DeleteObjects command
35-
const isDeleteObjects = context.commandName === "DeleteObjects";
35+
const isDeleteObjects = context.commandName === "DeleteObjectsCommand";
3636

3737
if (!isDeleteObjects) {
3838
return next(args);

0 commit comments

Comments
 (0)