Skip to content

Commit

Permalink
No delimits!
Browse files Browse the repository at this point in the history
  • Loading branch information
svenaas committed Nov 2, 2023
1 parent c5f1506 commit dbb0896
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion api/services/S3Helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class S3Client {
console.log('(AWS–V3) S3Helper deleteAllBucketObjects()');
const { bucket, client } = this;
const paginationsConfig = { client };
const listCommandInput = { Bucket: bucket, Delimiter: '/' };
const listCommandInput = { Bucket: bucket };

console.log('(AWS–V3) S3Helper deleteAllBucketObjects() listCommandInput: ', listCommandInput);
// Iterate by page over all of the objects in the bucket
Expand Down
1 change: 0 additions & 1 deletion test/api/unit/services/S3SiteRemover.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ describe('S3SiteRemover', () => {
s3Mock
.on(ListObjectsV2Command, {
Bucket: undefined,
Delimiter: '/',
ContinuationToken: undefined,
MaxKeys: undefined,
}).resolves({
Expand Down

0 comments on commit dbb0896

Please sign in to comment.