Merge pull request #401 from mrunalp/inc_create_timeout

Increase the timeout value for create container
This commit is contained in:
Antonio Murdaca 2017-03-23 19:13:49 +01:00 committed by GitHub
commit c12db22819

View file

@ -32,7 +32,7 @@ const (
// ContainerStateStopped represents the stopped state of a container // ContainerStateStopped represents the stopped state of a container
ContainerStateStopped = "stopped" ContainerStateStopped = "stopped"
// ContainerCreateTimeout represents the value of container creating timeout // ContainerCreateTimeout represents the value of container creating timeout
ContainerCreateTimeout = 3 * time.Second ContainerCreateTimeout = 10 * time.Second
) )
// New creates a new Runtime with options provided // New creates a new Runtime with options provided