From a86854effd4007d14725384b64564f4efbf516af Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Fri, 14 Aug 2020 12:42:19 +0200 Subject: [PATCH] =?UTF-8?q?Slightly=20update=20timeout,=20failing=20on=20w?= =?UTF-8?q?indows=20nodes=20(https://github.com/docker/api/runs/984443961)?= =?UTF-8?q?.=20Didn=E2=80=99t=20want=20to=20make=20it=20too=20long=20eithe?= =?UTF-8?q?r,=20avoid=20waiting=202=20mins=20to=20see=20when=20it=E2=80=99?= =?UTF-8?q?s=20failing.=20We=E2=80=99ll=20update=20this=20again=20if=20we?= =?UTF-8?q?=20see=20it=E2=80=99s=20not=20enough.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/aci-e2e/e2e-aci_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/aci-e2e/e2e-aci_test.go b/tests/aci-e2e/e2e-aci_test.go index 67fff876e..b51816470 100644 --- a/tests/aci-e2e/e2e-aci_test.go +++ b/tests/aci-e2e/e2e-aci_test.go @@ -675,5 +675,5 @@ func waitForStatus(t *testing.T, c *E2eCLI, containerID string, status string) { return poll.Continue("Status %s != %s (expected) for container %s", containerInspect.Status, status, containerID) } - poll.WaitOn(t, checkStopped, poll.WithDelay(5*time.Second), poll.WithTimeout(60*time.Second)) + poll.WaitOn(t, checkStopped, poll.WithDelay(5*time.Second), poll.WithTimeout(90*time.Second)) }