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
In _async_initiate_upload the code tries to delete a blob before upload.
This leads to several effects.
if a blob does not exist we get a ResoureNotFoundError, if we have no delete rights we get a HttpResponseError. Those errors will show up as unexpected Failures in the "Insights" Failure metric of the storage account.
The delete blob, even if only a trial, leads to additional storage transactions and cost
delete_blob should not be required, as storage could be done using the overwrite=True flag leading to the same behavior
In _async_initiate_upload the code tries to delete a blob before upload.
This leads to several effects.
Here the problematic code
The text was updated successfully, but these errors were encountered: