Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions support/storage/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,11 @@ func (b *S3Storage) ListFiles(pth string) (chan string, chan error) {
for {
for _, c := range resp.Contents {
params.Marker = c.Key
log.WithField("key", *c.Key).Trace("s3: ListFiles")
ch <- *c.Key
key := aws.StringValue(c.Key)
log.WithField("key", key).Trace("s3: ListFiles")
ch <- key
Comment thread
satyamz marked this conversation as resolved.
}
if *resp.IsTruncated {
if aws.BoolValue(resp.IsTruncated) {
Comment thread
satyamz marked this conversation as resolved.
req, resp = b.svc.ListObjectsRequest(params)
if b.unsignedRequests {
req.Handlers.Sign.Clear() // makes this request unsigned
Expand Down
Loading