From 53e1622626761f2603c7e63bc04f1f6cd6d7124c Mon Sep 17 00:00:00 2001 From: capossele <angelocapossele@gmail.com> Date: Fri, 17 Jul 2020 15:06:39 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Increase=20docker=20shutdo?= =?UTF-8?q?wn=20timeout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/integration-tests/tester/framework/docker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/integration-tests/tester/framework/docker.go b/tools/integration-tests/tester/framework/docker.go index 0b5d688f..5fd40921 100644 --- a/tools/integration-tests/tester/framework/docker.go +++ b/tools/integration-tests/tester/framework/docker.go @@ -214,7 +214,7 @@ func (d *DockerContainer) Remove() error { // Stop stops a container without terminating the process. // The process is blocked until the container stops or the timeout expires. func (d *DockerContainer) Stop() error { - duration := 30 * time.Second + duration := 3 * time.Minute return d.client.ContainerStop(context.Background(), d.id, &duration) } -- GitLab