Quellcode durchsuchen

Windows CI: TestUpdateRestartPolicy flakiness

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard vor 9 Jahren
Ursprung
Commit
16437d6a34
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      integration-cli/docker_cli_update_test.go

+ 1 - 1
integration-cli/docker_cli_update_test.go

@@ -12,7 +12,7 @@ func (s *DockerSuite) TestUpdateRestartPolicy(c *check.C) {
 	out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "sh", "-c", "sleep 1 && false")
 	timeout := 60 * time.Second
 	if daemonPlatform == "windows" {
-		timeout = 100 * time.Second
+		timeout = 150 * time.Second
 	}
 
 	id := strings.TrimSpace(string(out))