- Package Name: azure-storage-blob
- Package Version: 12.3.2
- Operating System: Windows
- Python Version: 3.8.1
I retrieve blobs matching a certain pattern and then delete them. Currently it is implemented with a (costly) workaround as you can see in the following issue: #12778
When passing blob_paged directly to delete_blobs it works as long as blob_paged is not zero, but if it is zero (i.e. no blob matches the prefix) it returns the exception tuple index out of range.
Can you please adjust the behavior that delete_blobs can handle blob_paged even if it is zero?
Thanks
I retrieve blobs matching a certain pattern and then delete them. Currently it is implemented with a (costly) workaround as you can see in the following issue: #12778
When passing
blob_pageddirectly todelete_blobsit works as long asblob_pagedis not zero, but if it is zero (i.e. no blob matches the prefix) it returns the exceptiontuple index out of range.Can you please adjust the behavior that
delete_blobscan handleblob_pagedeven if it is zero?Thanks