Skip to content

Commit

Permalink
Correcting parameter order workload identity (#34721)
Browse files Browse the repository at this point in the history
* fixing parameter order workload identity

* changing Workload credentials builder

* uncommenting
  • Loading branch information
sergiommarcial committed May 1, 2023
1 parent 176e4e3 commit b5d763f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,6 +72,6 @@ public WorkloadIdentityCredential build() {
ValidationUtil.validate(this.getClass().getSimpleName(), LOGGER, "Client ID", clientId,
"Tenant ID", tenantId, "Service Token File Path", tokenFilePath);

return new WorkloadIdentityCredential(clientId, tenantId, tokenFilePath, identityClientOptions.clone());
return new WorkloadIdentityCredential(tenantId, clientId, tokenFilePath, identityClientOptions.clone());
}
}

0 comments on commit b5d763f

Please sign in to comment.