1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Merge pull request #20005 from Microsoft/jjh/testrunrestartmaxretries

Windows CI: Up timeout TestRunRestartMaxRetries
Upstream-commit: 2da5ad3bb0fb553112751a683ac861ab8fd5b8e2
Component: engine
This commit is contained in:
Jess Frazelle
2016-02-04 16:07:42 -08:00

View File

@@ -2683,7 +2683,7 @@ func (s *DockerSuite) TestRunRestartMaxRetries(c *check.C) {
out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "false")
timeout := 10 * time.Second
if daemonPlatform == "windows" {
timeout = 45 * time.Second
timeout = 120 * time.Second
}
id := strings.TrimSpace(string(out))