Browse code

integration-cli: increase healthcheck timeout

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
(cherry picked from commit 8c9362857f352548b94bc39c675d558b4da0d3b3)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Tonis Tiigi authored on 2019/07/18 10:27:28
Showing 1 changed files
... ...
@@ -28,7 +28,7 @@ func (s *DockerSwarmSuite) TestServiceHealthRun(c *check.C) {
28 28
 	result := cli.BuildCmd(c, imageName, cli.Daemon(d),
29 29
 		build.WithDockerfile(`FROM busybox
30 30
 		RUN touch /status
31
-		HEALTHCHECK --interval=1s --timeout=1s --retries=1\
31
+		HEALTHCHECK --interval=1s --timeout=5s --retries=1\
32 32
 		  CMD cat /status`),
33 33
 	)
34 34
 	result.Assert(c, icmd.Success)