Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Dec 22, 2023
1 parent d4af840 commit 3a9b89f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/filesystem/azurefs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ Status AzureOptions::ConfigureDefaultCredential(const std::string& account_name)
}

Status AzureOptions::ConfigureManagedIdentityCredential(const std::string& account_name,
std::string const& clientId) {
const std::string& client_id) {
account_name_ = account_name;
credential_kind_ = CredentialKind::kTokenCredential;
token_credential_ =
std::make_shared<Azure::Identity::ManagedIdentityCredential>(clientId);
std::make_shared<Azure::Identity::ManagedIdentityCredential>(client_id);
return Status::OK();
}

Expand Down

0 comments on commit 3a9b89f

Please sign in to comment.