Increase the timeout value for create container

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
Mrunal Patel 2017-03-23 10:06:52 -07:00
parent b487a9b7dd
commit be47583041

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