mirror of https://github.com/restic/restic.git
azure: Fix missing rate limiting
This commit is contained in:
parent
a466e945d9
commit
16ba237d8b
|
@ -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 New Issue