summaryrefslogtreecommitdiffhomepage
path: root/runsc
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2018-07-13 12:33:08 -0700
committerShentubot <shentubot@google.com>2018-07-13 12:34:04 -0700
commit6dce46d4c0c1795e8a00319a0e87f5f63260080b (patch)
tree1cc296e95bd9ffaad5e97e2b0b2d04449b5d9fa4 /runsc
parent5b09ec3b890141959aa6a6a73b1ee4e26490c5cc (diff)
Bump the timeout when waiting for python HTTP server.
PiperOrigin-RevId: 204511630 Change-Id: Ib841a7144f3833321b0e69b8585b03c4ed55a265
Diffstat (limited to 'runsc')
-rw-r--r--runsc/test/image/python_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/test/image/python_test.go b/runsc/test/image/python_test.go
index f0dab3989..e7324e83e 100644
--- a/runsc/test/image/python_test.go
+++ b/runsc/test/image/python_test.go
@@ -37,7 +37,7 @@ func TestPythonHello(t *testing.T) {
}
// Wait until it's up and running.
- if err := d.WaitForHTTP(port, 5*time.Second); err != nil {
+ if err := d.WaitForHTTP(port, 10*time.Second); err != nil {
t.Fatalf("docker.WaitForHTTP() timeout: %v", err)
}