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
1 changed files with 1 additions and 1 deletions

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