Azure: Use default HTTP transport

This commit is contained in:
Alexander Neumann 2017-08-05 21:25:38 +02:00
parent d973aa82fe
commit 618ce115d7
1 changed files with 3 additions and 0 deletions

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)