diff --git a/tools/integration-tests/tester/framework/docker.go b/tools/integration-tests/tester/framework/docker.go index 0b5d688f84d72d10b7cd092840df917c0923f83b..5fd40921b80e60e7a981bc2b492e45fc38d97d27 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) }