mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
IsTruncated returned by the ListMultipartUploads method is set to false by default (#3682)
* simplify a bit * fix: IsTruncated returned by the ListMultipartUploads method is set to false by default
This commit is contained in:
parent
21c0587900
commit
bb880d6253
|
@ -244,6 +244,7 @@ func (s3a *S3ApiServer) listMultipartUploads(input *s3.ListMultipartUploadsInput
|
|||
KeyMarker: input.KeyMarker,
|
||||
MaxUploads: input.MaxUploads,
|
||||
Prefix: input.Prefix,
|
||||
IsTruncated: aws.Bool(false),
|
||||
}
|
||||
|
||||
entries, _, err := s3a.list(s3a.genUploadsFolder(*input.Bucket), "", *input.UploadIdMarker, false, math.MaxInt32)
|
||||
|
|
Loading…
Reference in a new issue