andrebsguedes commented on code in PR #5425:
URL: https://github.com/apache/arrow-rs/pull/5425#discussion_r1501855628
##########
object_store/src/azure/builder.rs:
##########
@@ -809,15 +830,20 @@ impl MicrosoftAzureBuilder {
// Allow overriding defaults. Values taken from
// from
https://docs.rs/azure_storage/0.2.0/src/azure_storage/core/clients/storage_account_client.rs.html#129-141
let url = url_from_env("AZURITE_BLOB_STORAGE_URL",
"http://127.0.0.1:10000")?;
- let key = match self.access_key {
- Some(k) => AzureAccessKey::try_new(&k)?,
- None => AzureAccessKey::try_new(EMULATOR_ACCOUNT_KEY)?,
+ let credential = if let Some(k) = self.access_key {
Review Comment:
The current version of Azurite [does
support](https://github.com/Azure/Azurite?tab=readme-ov-file#features--key-changes-in-azurite-v3)
them. But I can roll it back if you want, your call.
--
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]