summaryrefslogtreecommitdiffhomepage
path: root/runsc/sandbox
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2018-10-16 20:33:20 -0700
committerShentubot <shentubot@google.com>2018-10-16 20:34:10 -0700
commitcea51641d4dacf24cc53a30144fc14ec053f5aa2 (patch)
treea80566531a8b160007a303e92abafbe80112ac9e /runsc/sandbox
parent324ad3564ba42a5106be77a06d0cd52290e1cd22 (diff)
Bump sandbox start and stop timeouts.
PiperOrigin-RevId: 217433699 Change-Id: Icef08285728c23ee7dd650706aaf18da51c25dff
Diffstat (limited to 'runsc/sandbox')
-rw-r--r--runsc/sandbox/sandbox.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/sandbox/sandbox.go b/runsc/sandbox/sandbox.go
index be68e864f..713b326a6 100644
--- a/runsc/sandbox/sandbox.go
+++ b/runsc/sandbox/sandbox.go
@@ -86,7 +86,7 @@ func Create(id string, spec *specs.Spec, conf *boot.Config, bundleDir, consoleSo
}
// Wait for the control server to come up (or timeout).
- if err := s.waitForCreated(10 * time.Second); err != nil {
+ if err := s.waitForCreated(20 * time.Second); err != nil {
return nil, err
}