Skip to content

Commit

Permalink
small bug fix for mutex on store_azure from arize fork
Browse files Browse the repository at this point in the history
  • Loading branch information
ddowker authored and jshearer committed Jul 11, 2024
1 parent 6fac4a1 commit f188539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion broker/fragment/store_azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func (a *azureBackend) getAzureServiceClient(endpoint *url.URL) (client *service

a.mu.Lock()
a.clients[accountName] = serviceClient
a.mu.Lock()
a.mu.Unlock()
return serviceClient, nil
} else if endpoint.Scheme == "azure-ad" {
// Link to the Azure docs describing what fields are required for active directory auth
Expand Down

0 comments on commit f188539

Please sign in to comment.