Skip to content

Commit

Permalink
!463 bug fix error oss file set
Browse files Browse the repository at this point in the history
Merge pull request !463 from lbw/N/A
  • Loading branch information
lbw authored and gitee-org committed Jan 17, 2024
2 parents 1087305 + cd7380a commit fd8d680
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public List<S3ObjectSummary> getAllObjectsByPrefix(String bucketName, String pre
return Arrays.stream(FileUtil.ls(dir)).filter(file -> file.getName().startsWith(prefix)).map(file -> {
S3ObjectSummary summary = new S3ObjectSummary();
summary.setKey(file.getName());
return new S3ObjectSummary();
return summary;
}).collect(Collectors.toList());
}

Expand Down

0 comments on commit fd8d680

Please sign in to comment.