- Package Name: azure-storage-blob
- Package Version: 12.4.0
- Operating System: Does not matter
- Python Version: 3.6.11
Describe the bug
When invoking container.delete_blobs('path/to/blob') the code throws PartialBatchErrorException with "The TLS version of the connection is not permitted on this storage account.".
The methods container.download_blob('path/to/blob') and container.delete_blob('path/to/blob') are successful.
To Reproduce
Steps to reproduce the behavior:
credential = ClientSecretCredential(.....)
blob_client = BlobServiceClient(account_url=account_url, credential=credential)
container = blob_client.get_container_client('some_container_name')
container.delete_blobs('path/to/blob1', 'path/to/blob2')
Expected behavior
To delete the blobs.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
The storage account is set to minimum TLS version 1.0.
Describe the bug
When invoking container.delete_blobs('path/to/blob') the code throws
PartialBatchErrorExceptionwith "The TLS version of the connection is not permitted on this storage account.".The methods
container.download_blob('path/to/blob')andcontainer.delete_blob('path/to/blob')are successful.To Reproduce
Steps to reproduce the behavior:
Expected behavior
To delete the blobs.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
The storage account is set to minimum TLS version 1.0.