2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-02 00:50:48 +00:00

Azure: Use default HTTP transport

This commit is contained in:
Alexander Neumann 2017-08-05 21:25:38 +02:00
parent d973aa82fe
commit 618ce115d7

View File

@ -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)