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
A shared access signature (SAS) is a URI that grants restricted access rights to Azure Storage resources. You can provide a shared access signature to clients who should not be trusted with your storage account key but whom you wish to delegate access to certain storage account resources. By distributing a shared access signature URI to these clients, you grant them access to a resource for a specified period of time.
Because of the additional checks, a connection string that worked fine on v1.13.2 now fails on v1.14
The text was updated successfully, but these errors were encountered:
In version 4.2, additional checks have been added to the initialiser of
AzureStorage
django-storages/storages/backends/azure_storage.py
Lines 132 to 134 in d1cd2db
However, when using a connection string with shared access signature, the account name, and specifically, the account key should be omitted.
From azure docs https://learn.microsoft.com/en-gb/rest/api/storageservices/delegate-access-with-shared-access-signature:
Because of the additional checks, a connection string that worked fine on v1.13.2 now fails on v1.14
The text was updated successfully, but these errors were encountered: