From 76a400929343dd9200a2129c561e311c3efaf4cb Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 2 Mar 2016 10:26:15 -0800 Subject: [PATCH] Windows CI Reliablity: TestLogsApiWithStdout Signed-off-by: John Howard --- integration-cli/docker_api_logs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_api_logs_test.go b/integration-cli/docker_api_logs_test.go index 6955d9db02..2ff27f8ecc 100644 --- a/integration-cli/docker_api_logs_test.go +++ b/integration-cli/docker_api_logs_test.go @@ -46,7 +46,7 @@ func (s *DockerSuite) TestLogsApiWithStdout(c *check.C) { if !strings.HasSuffix(l.out, "hello") { c.Fatalf("expected log output to container 'hello', but it does not") } - case <-time.After(2 * time.Second): + case <-time.After(20 * time.Second): c.Fatal("timeout waiting for logs to exit") } }