From be47583041d6dcbbb592f9a89754f4fe36cd9f90 Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Thu, 23 Mar 2017 10:06:52 -0700 Subject: [PATCH] Increase the timeout value for create container Signed-off-by: Mrunal Patel --- oci/oci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oci/oci.go b/oci/oci.go index 869e7444..5faf90c7 100644 --- a/oci/oci.go +++ b/oci/oci.go @@ -32,7 +32,7 @@ const ( // ContainerStateStopped represents the stopped state of a container ContainerStateStopped = "stopped" // ContainerCreateTimeout represents the value of container creating timeout - ContainerCreateTimeout = 3 * time.Second + ContainerCreateTimeout = 10 * time.Second ) // New creates a new Runtime with options provided