forked from TrueCloudLab/restic
azure: Fix missing rate limiting
This commit is contained in:
parent
a466e945d9
commit
16ba237d8b
1 changed files with 1 additions and 1 deletions
|
@ -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},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue