From 660e26bd8c0e681b78f91b4aee0fc6bd7280aacc Mon Sep 17 00:00:00 2001 From: toranger Date: Fri, 2 Aug 2019 11:51:22 +0800 Subject: [PATCH] Fix the mulupload out of index panic --- object.go | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/object.go b/object.go index 8e6c4af..483561f 100644 --- a/object.go +++ b/object.go @@ -133,8 +133,8 @@ type ObjectPutHeaderOptions struct { XCosStorageClass string `header:"x-cos-storage-class,omitempty" url:"-"` // 可选值: Normal, Appendable //XCosObjectType string `header:"x-cos-object-type,omitempty" url:"-"` - // Enable Server Side Encryption, Only supported: AES256 - XCosServerSideEncryption string `header:"x-cos-server-side-encryption,omitempty" url:"-" xml:"-"` + // Enable Server Side Encryption, Only supported: AES256 + XCosServerSideEncryption string `header:"x-cos-server-side-encryption,omitempty" url:"-" xml:"-"` } // ObjectPutOptions the options of put object @@ -427,6 +427,7 @@ type MultiUploadOptions struct { } // MultiUpload 为高级upload接口,并发分块上传 +// 注意该接口目前只供参考 // // 需要指定分块大小 partSize >= 1 ,单位为MB // 同时请确认分块数量不超过10000 @@ -463,6 +464,9 @@ func (s *ObjectService) MultiUpload(ctx context.Context, name string, r io.Reade if err != io.EOF { return nil, nil, err } + // If read fail also need to create i index respon in chan, + // in case below out of index to panic. + chs[i] = make(chan *Response) PartNumber = i break } @@ -473,6 +477,10 @@ func (s *ObjectService) MultiUpload(ctx context.Context, name string, r io.Reade for i := 1; i < PartNumber; i++ { resp := <-chs[i] // Notice one part fail can not get the etag according. + if resp == nil { + // Some part already fail, can not to get the header inside. + return nil, nil, fmt.Errorf("UploadID %s, part %d failed to get resp content.", uploadID, i) + } etag := resp.Header.Get("ETag") optcom.Parts = append(optcom.Parts, Object{ PartNumber: i, ETag: etag},