Rename package timeout to timeoutconn.
Signed-off-by: Rik Nijessen <riknijessen@gmail.com>
This commit is contained in:
parent
ec7ed3eefd
commit
d3ad1c3cbb
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ import (
|
|||
"time"
|
||||
|
||||
log "github.com/Sirupsen/logrus"
|
||||
"github.com/docker/docker/pkg/timeout"
|
||||
"github.com/docker/docker/pkg/timeoutconn"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -71,7 +71,7 @@ func newClient(jar http.CookieJar, roots *x509.CertPool, certs []tls.Certificate
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
conn = timeout.New(conn, 1*time.Minute)
|
||||
conn = timeoutconn.New(conn, 1*time.Minute)
|
||||
return conn, nil
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue