mirror of
https://github.com/minio/minio.git
synced 2026-06-08 16:35:20 -04:00
GCS ListMultipartUploads: Don't return on first uploadid (#7014)
ListMultipartUploads code returns only the first uploadid. Fixes #7011
This commit is contained in:
parent
7f2d439baa
commit
c59206bcd3
1 changed files with 1 additions and 2 deletions
|
|
@ -1033,8 +1033,7 @@ func (l *gcsGateway) ListMultipartUploads(ctx context.Context, bucket string, pr
|
|||
UploadID: components[3],
|
||||
Initiated: attrs.Created,
|
||||
}
|
||||
uploads = []minio.MultipartInfo{upload}
|
||||
break
|
||||
uploads = append(uploads, upload)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue