Skip to content

Commit

Permalink
test: fixed renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnandrew committed Aug 14, 2024
1 parent 094dea8 commit 347d607
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,9 @@ class StorageS3Service {
..prefix = resolvedPath
..maxKeys = options.pageSize
..continuationToken = options.nextToken
..delimiter =
s3Category.excludeSubPaths ? s3Category.delimiter : null;
..delimiter = subpathStrategy.excludeSubpaths
? subpathStrategy.delimiter
: null;
});

try {
Expand All @@ -164,8 +165,9 @@ class StorageS3Service {
builder
..bucket = _storageOutputs.bucketName
..prefix = resolvedPath
..delimiter =
s3Category.excludeSubPaths ? s3Category.delimiter : null;
..delimiter = subpathStrategy.excludeSubpaths
? subpathStrategy.delimiter
: null;
});

listResult = await _defaultS3Client.listObjectsV2(request).result;
Expand Down

0 comments on commit 347d607

Please sign in to comment.