diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2018-07-13 12:33:08 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-07-13 12:34:04 -0700 |
commit | 6dce46d4c0c1795e8a00319a0e87f5f63260080b (patch) | |
tree | 1cc296e95bd9ffaad5e97e2b0b2d04449b5d9fa4 /runsc | |
parent | 5b09ec3b890141959aa6a6a73b1ee4e26490c5cc (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.go | 2 |
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) } |