diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-09-11 15:07:19 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-09-11 15:07:19 -0700 |
| commit | 3984c3962f8843a224e0b9bcc365729d747e9210 (patch) | |
| tree | 4b40f96f183b650304e9df456fc0664b40ba2eb8 | |
| parent | baa6bdf4d494c3296dbec731fbdf47db67cec8e8 (diff) | |
| download | seaweedfs-3984c3962f8843a224e0b9bcc365729d747e9210.tar.xz seaweedfs-3984c3962f8843a224e0b9bcc365729d747e9210.zip | |
add comment
| -rw-r--r-- | weed/s3api/filer_multipart.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/weed/s3api/filer_multipart.go b/weed/s3api/filer_multipart.go index 783435b40..6989d3f5a 100644 --- a/weed/s3api/filer_multipart.go +++ b/weed/s3api/filer_multipart.go @@ -206,6 +206,8 @@ type ListPartsResult struct { } func (s3a *S3ApiServer) listObjectParts(input *s3.ListPartsInput) (output *ListPartsResult, code ErrorCode) { + // https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html + output = &ListPartsResult{ Bucket: input.Bucket, Key: objectKey(input.Key), |
