1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #20005 from Microsoft/jjh/testrunrestartmaxretries

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

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))