You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have dependencies on
azure_storage = "0.13.0"
azure_storage_blobs = {version = "0.13.0", features = ["md5"]}
azure_core = "0.13.0"
I have a working client which uploads blobs to Azure storage.
I want to remove the md5 feature (as now allowed by #1292), but when I do so, I see put_block_list requests fail with error "header not found content-md5". Note that put_block requests succeed.
I think I can see the bug:
API docs for put_block and put_block_list say that if I omit the content-md5 header from the request then it will also be omitted from the response.
I have dependencies on
azure_storage = "0.13.0"
azure_storage_blobs = {version = "0.13.0", features = ["md5"]}
azure_core = "0.13.0"
I have a working client which uploads blobs to Azure storage.
I want to remove the md5 feature (as now allowed by #1292), but when I do so, I see put_block_list requests fail with error "header not found content-md5". Note that put_block requests succeed.
I think I can see the bug:
API docs for put_block and put_block_list say that if I omit the content-md5 header from the request then it will also be omitted from the response.
But looking at the code I see:
The text was updated successfully, but these errors were encountered: