build: update dependencies

This fixes the azureblob backend so it builds again after the SDK
changes.
This commit is contained in:
Nick Craig-Wood 2023-01-12 12:21:21 +00:00
parent f31ab6d178
commit 10bf8a769e
3 changed files with 275 additions and 115 deletions

View file

@ -2139,7 +2139,7 @@ func (o *Object) uploadMultipart(ctx context.Context, in io.Reader, size int64,
rs := readSeekCloser{wrappedReader, bufferReader}
options := blockblob.StageBlockOptions{
// Specify the transactional md5 for the body, to be validated by the service.
TransactionalContentMD5: transactionalMD5,
TransactionalValidation: blob.TransferValidationTypeMD5(transactionalMD5),
}
_, err = blb.StageBlock(ctx, blockID, &rs, &options)
return o.fs.shouldRetry(ctx, err)