From 6dce46d4c0c1795e8a00319a0e87f5f63260080b Mon Sep 17 00:00:00 2001 From: Nicolas Lacasse Date: Fri, 13 Jul 2018 12:33:08 -0700 Subject: [PATCH] Bump the timeout when waiting for python HTTP server. PiperOrigin-RevId: 204511630 Change-Id: Ib841a7144f3833321b0e69b8585b03c4ed55a265 --- runsc/test/image/python_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }