You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
services/s3 should compatible with MinIO and pass integration test with MinIO: List with types.ListModePart mode should lists in-progress multipart uploads.
CreateMultipart with key 420d60bd-c35a-4106-a347-4eaeaef5276e/6ed57725-4f94-4cf2-b2eb-81a857a1a3e3: get the MultipartID: dbacfbb1-5c55-43a9-aeac-ba0c39521c9e
WriteMultipart with the MultipartID get from step 1 to write a part
List with types.ListModePart mode to get the iterator it.
Excepted Behavior
We can retrieve all the in-progress multipart uploads by calling Next() continuously until get the IterateDone.
mo, err := it.Next()
mid, ok := mo.GetMultipartID()
// mid should equal to the `MultipartID` returned by `CreateMultipart`
Current Behavior
When calling it.Next():
runtime error: invalid memory address or nil pointer dereference
The ListMultipartUploads request and response are as follows, no in-progress mulitpart upload info in the response body:
Steps to Reproduce
Run integration test for services/s3 with the following config:
services/s3
should compatible withMinIO
and pass integration test withMinIO
:List
withtypes.ListModePart
mode should lists in-progress multipart uploads.CreateMultipart
with key420d60bd-c35a-4106-a347-4eaeaef5276e/6ed57725-4f94-4cf2-b2eb-81a857a1a3e3
: get theMultipartID
:dbacfbb1-5c55-43a9-aeac-ba0c39521c9e
WriteMultipart
with theMultipartID
get from step 1 to write a partList
withtypes.ListModePart
mode to get the iteratorit
.Excepted Behavior
We can retrieve all the in-progress multipart uploads by calling
Next()
continuously until get theIterateDone
.Current Behavior
When calling
it.Next()
:The
ListMultipartUploads
request and response are as follows, no in-progress mulitpart upload info in the response body:Steps to Reproduce
Run integration test for services/s3 with the following config:
Also we need to set
endpoint
andUsePathStyle
for initialization:Environment
The text was updated successfully, but these errors were encountered: