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
azure.storage.blob.baseblobservice.BaseBlobService.generate_blob_shared_access_signature acquired a new parameter, snapshot, in 2.0. This parameter was inserted before permission. This breaks code that passes permission positionally. Notably, django-storages does this.
Have you found a mitigation/solution?
Patch dependents to pass permission by keyword.
The text was updated successfully, but these errors were encountered:
Which service(blob, file, queue) does this issue concern?
Blob
Which version of the SDK was used? Please provide the output of
pip freeze
.What problem was encountered?
azure.storage.blob.baseblobservice.BaseBlobService.generate_blob_shared_access_signature
acquired a new parameter,snapshot
, in 2.0. This parameter was inserted beforepermission
. This breaks code that passespermission
positionally. Notably,django-storages
does this.Have you found a mitigation/solution?
Patch dependents to pass
permission
by keyword.The text was updated successfully, but these errors were encountered: