aersam opened a new issue, #40362:
URL: https://github.com/apache/arrow/issues/40362
### Describe the bug, including details regarding any error messages,
version, and platform.
delta-rs is using this config to connect to Azure Storage Emulator:
```python
dict(
AZURE_STORAGE_ACCOUNT_NAME="devstoreaccount1",
AZURE_STORAGE_ACCOUNT_KEY="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==",
AZURE_STORAGE_CONTAINER_NAME="deltars",
AZURE_STORAGE_USE_EMULATOR="true",
AZURE_STORAGE_USE_HTTP="true",
)
```
this is passed via python, but it basically just sets the configs in
object_store.
In 0.9.1, this started to cause an authentication error:
```
E OSError: Generic MicrosoftAzure error: Client error with status 403
Forbidden: <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
E <Error>
E <Code>AuthorizationFailure</Code>
E <Message>Server failed to authenticate the request. Make sure the
value of the Authorization header is formed correctly including the signature.
E RequestId:44a1c5ff-8a6b-491a-a890-e07d0d823e87
E Time:2024-03-05T11:31:55.140Z</Message>
E </Error>
```
Can you check this?
### Component(s)
Other
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]