mirror of https://github.com/restic/restic.git
Azure: Use default HTTP transport
This commit is contained in:
parent
d973aa82fe
commit
618ce115d7
|
@ -3,6 +3,7 @@ package azure
|
|||
import (
|
||||
"context"
|
||||
"io"
|
||||
"net/http"
|
||||
"os"
|
||||
"path"
|
||||
"strings"
|
||||
|
@ -35,6 +36,8 @@ func open(cfg Config) (*Backend, error) {
|
|||
return nil, errors.Wrap(err, "NewBasicClient")
|
||||
}
|
||||
|
||||
client.HTTPClient = &http.Client{Transport: backend.Transport()}
|
||||
|
||||
service := client.GetBlobService()
|
||||
|
||||
sem, err := backend.NewSemaphore(cfg.Connections)
|
||||
|
|
Loading…
Reference in New Issue