Skip to content

Commit

Permalink
fix: Fix S3 key prefix (#38)
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Behar <[email protected]>
  • Loading branch information
simster7 authored Mar 10, 2021
1 parent 52727e4 commit a4e9672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func (s *s3client) ListDirectory(bucket, keyPrefix string) ([]string, error) {
doneCh := make(chan struct{})
defer close(doneCh)
listOpts := minio.ListObjectsOptions{
//Prefix: keyPrefix,
Prefix: keyPrefix,
Recursive: true,
}
var out []string
Expand Down

0 comments on commit a4e9672

Please sign in to comment.