From bfe5de7ce0abaf1e52c60098958928bda72674df Mon Sep 17 00:00:00 2001 From: Lee Bernick Date: Thu, 20 Jul 2023 14:57:17 -0400 Subject: [PATCH] Fix flake of TestPipelineTaskTimeout Prior to this commit, TestPipelineTaskTimeout was flaky because a Pipeline task that was supposed to succeed timed out. This can happen when the time to create a pod exceeds the timeout, which was 60s. This commit removes the timeout for that pipeline task, removing this cause of flakes. --- test/timeout_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/timeout_test.go b/test/timeout_test.go index 1667d24fb62..12a77265755 100644 --- a/test/timeout_test.go +++ b/test/timeout_test.go @@ -364,7 +364,7 @@ spec: - name: pipelinetask1 taskRef: name: %s - timeout: 60s + timeout: 0 - name: pipelinetask2 taskRef: name: %s