From f4fe0168a6eeef4435835b8bebe52bf03f5a7dbd Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Tue, 17 Jan 2023 13:02:51 -0800 Subject: [PATCH] hs-test: zero timeout on docker stop Should drop execution time for all tests by about 80%. Type: test Signed-off-by: Florin Coras Change-Id: Ib6b4ef9fb4e7745a61b40c0b34e53e4046ccdbcc --- extras/hs-test/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/hs-test/container.go b/extras/hs-test/container.go index 874ce3d1750..971f3b60ef9 100644 --- a/extras/hs-test/container.go +++ b/extras/hs-test/container.go @@ -187,5 +187,5 @@ func (c *Container) execAction(args string) (string, error) { } func (c *Container) stop() error { - return exechelper.Run("docker stop " + c.name) + return exechelper.Run("docker stop " + c.name + " -t 0") } -- 2.16.6