Skip to content

Commit

Permalink
azure: Fix missing rate limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelEischer committed May 18, 2023
1 parent a466e94 commit 16ba237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/backend/azure/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func open(cfg Config, rt http.RoundTripper) (*Backend, error) {
url := fmt.Sprintf("https://%s.blob.core.windows.net/%s", cfg.AccountName, cfg.Container)
opts := &azContainer.ClientOptions{
ClientOptions: azcore.ClientOptions{
Transport: http.DefaultClient,
Transport: &http.Client{Transport: rt},
},
}

Expand Down

0 comments on commit 16ba237

Please sign in to comment.