mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05: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
@ -1033,8 +1033,7 @@ func (l *gcsGateway) ListMultipartUploads(ctx context.Context, bucket string, pr
|
|||||||
UploadID: components[3],
|
UploadID: components[3],
|
||||||
Initiated: attrs.Created,
|
Initiated: attrs.Created,
|
||||||
}
|
}
|
||||||
uploads = []minio.MultipartInfo{upload}
|
uploads = append(uploads, upload)
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user