Remove timeout for http.Client in registry/client/repository.go.

Timeouts should not be a discrete period of time, because they end
up being arbitrary and may be difficult to gauge correctly against
very large Docker layers. Rather, timeouts should be set at the
transport level using the SetDeadline attribute on a net.Conn
object.

Signed-off-by: Jon Poler <jonathan.poler@apcera.com>
pull/656/head
Jon Poler 2015-06-22 20:59:28 -07:00
parent c1423aa2aa
commit f09051fe54
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ func NewRepository(ctx context.Context, name, baseURL string, transport http.Rou
client := &http.Client{
Transport: transport,
Timeout: 1 * time.Minute,
// TODO(dmcgowan): create cookie jar
}