Browse Source

fix: isTruncated returns problematic (#3907)

pull/3909/head
famosss 2 years ago
committed by GitHub
parent
commit
34132b2c9f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      weed/s3api/s3api_objects_list_handlers.go

2
weed/s3api/s3api_objects_list_handlers.go

@ -297,7 +297,7 @@ func (s3a *S3ApiServer) doListFilerEntries(client filer_pb.SeaweedFilerClient, d
// finished processing this sub directory
marker = subDir
}
if cursor.maxKeys <= 0 {
if cursor.isTruncated {
return
}

Loading…
Cancel
Save