mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
s3: fix for listing objects if more than 1000 in the folder
many existing tools have max key set to 1000
This commit is contained in:
parent
80b8692688
commit
ccbdb38c89
|
@ -238,7 +238,7 @@ func (s3a *S3ApiServer) doListFilerEntries(client filer_pb.SeaweedFilerClient, d
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if counter >= maxKeys + 1 {
|
if counter >= maxKeys {
|
||||||
isTruncated = true
|
isTruncated = true
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue