diff --git a/backend/s3/s3.go b/backend/s3/s3.go index 8f690b38d..f71c44121 100644 --- a/backend/s3/s3.go +++ b/backend/s3/s3.go @@ -5678,6 +5678,13 @@ func (f *Fs) OpenChunkWriter(ctx context.Context, remote string, src fs.ObjectIn var mOut *s3.CreateMultipartUploadOutput err = f.pacer.Call(func() (bool, error) { mOut, err = f.c.CreateMultipartUploadWithContext(ctx, &mReq) + if err == nil { + if mOut == nil { + err = fserrors.RetryErrorf("internal error: no info from multipart upload") + } else if mOut.UploadId == nil { + err = fserrors.RetryErrorf("internal error: no UploadId in multpart upload: %#v", *mOut) + } + } return f.shouldRetry(ctx, err) }) if err != nil {