From ff3526bfb4974921158501391b8e3ba9ba408d9c Mon Sep 17 00:00:00 2001 From: Pankti Shah <58618433+panktishah26@users.noreply.github.com> Date: Tue, 24 Oct 2023 17:24:18 -0700 Subject: [PATCH] increase timeout to wait for cluster generations to be same (#6884) --- pkg/clustermanager/applier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/clustermanager/applier.go b/pkg/clustermanager/applier.go index dd1b66e4ac49..7127a0cf027c 100644 --- a/pkg/clustermanager/applier.go +++ b/pkg/clustermanager/applier.go @@ -20,7 +20,7 @@ const ( applyClusterSpecTimeout = 2 * time.Minute waitForClusterReconcileTimeout = time.Hour retryBackOff = time.Second - waitForFailureMessageErrorTimeout = time.Minute + waitForFailureMessageErrorTimeout = 10 * time.Minute defaultFieldManager = "eks-a-cli" defaultConditionCheckTotalCount = 20 )