Skip to content

Commit 61c8be1

Browse files
committed
remove --timeout=0 flag to cleanup function of watch e2e test
compose down command need the watch process to be killed to succeed Signed-off-by: Guillaume Lours <[email protected]>
1 parent 421a6b0 commit 61c8be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/e2e/watch_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func doTest(t *testing.T, svcName string, tarSync bool) {
8484

8585
// important that --rmi is used to prune the images and ensure that watch builds on launch
8686
cleanup := func() {
87-
cli.RunDockerComposeCmd(t, "down", svcName, "--timeout=0", "--remove-orphans", "--volumes", "--rmi=local")
87+
cli.RunDockerComposeCmd(t, "down", svcName, "--remove-orphans", "--volumes", "--rmi=local")
8888
}
8989
cleanup()
9090
t.Cleanup(cleanup)

0 commit comments

Comments
 (0)