Browse code

TestAPISwarmServicesUpdateStartFirst: Increase timeout on health check command

Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>

Aaron Lehmann authored on 2017/05/12 03:21:31
Showing 1 changed files
... ...
@@ -196,7 +196,7 @@ func (s *DockerSwarmSuite) TestAPISwarmServicesUpdateStartFirst(c *check.C) {
196 196
 	// service started from this image won't pass health check
197 197
 	_, _, err := d.BuildImageWithOut(image2,
198 198
 		`FROM busybox
199
-		HEALTHCHECK --interval=1s --timeout=1s --retries=1024\
199
+		HEALTHCHECK --interval=1s --timeout=30s --retries=1024 \
200 200
 		  CMD cat /status`,
201 201
 		true)
202 202
 	c.Check(err, check.IsNil)