diff options
| author | Feng Ye <fengye87.me@gmail.com> | 2019-07-30 17:46:33 +0800 |
|---|---|---|
| committer | Feng Ye <fengye87.me@gmail.com> | 2019-07-30 17:46:33 +0800 |
| commit | 7df5f9a70fe63ba7fa3b25d665ede4542d9dc8ea (patch) | |
| tree | 06423751359fcccd4d83735ac98cfab122294128 /weed | |
| parent | 8afd8d35b3230f6fc286967e8aa9641bd8c1460c (diff) | |
| download | seaweedfs-7df5f9a70fe63ba7fa3b25d665ede4542d9dc8ea.tar.xz seaweedfs-7df5f9a70fe63ba7fa3b25d665ede4542d9dc8ea.zip | |
Move travis-ci pipeline to go mod
Diffstat (limited to 'weed')
| -rw-r--r-- | weed/s3api/filer_multipart.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/s3api/filer_multipart.go b/weed/s3api/filer_multipart.go index c8fe05645..44416a514 100644 --- a/weed/s3api/filer_multipart.go +++ b/weed/s3api/filer_multipart.go @@ -23,7 +23,7 @@ type InitiateMultipartUploadResult struct { } func (s3a *S3ApiServer) createMultipartUpload(ctx context.Context, input *s3.CreateMultipartUploadInput) (output *InitiateMultipartUploadResult, code ErrorCode) { - uploadId, _ := uuid.NewV4() + uploadId := uuid.NewV4() uploadIdString := uploadId.String() if err := s3a.mkdir(ctx, s3a.genUploadsFolder(*input.Bucket), uploadIdString, func(entry *filer_pb.Entry) { |
