From 9cfc2b7623a57d4116dc77cc6947af4d10c24705 Mon Sep 17 00:00:00 2001 From: Nathan Naveen <42319948+nathannaveen@users.noreply.github.com> Date: Fri, 11 Oct 2024 06:21:35 -0500 Subject: [PATCH] Fix Flaky E2e Test (#2189) Signed-off-by: nathannaveen <42319948+nathannaveen@users.noreply.github.com> --- internal/testing/e2e/e2e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/testing/e2e/e2e b/internal/testing/e2e/e2e index a1141c38a9..4c05af026e 100755 --- a/internal/testing/e2e/e2e +++ b/internal/testing/e2e/e2e @@ -145,8 +145,8 @@ for command in "${ingestion_commands[@]}"; do echo @@@@ Running ingestion command: "$command" | tee -a "$LOG_FILE" eval "$command" - echo @@@@ Waiting - sleep 60 + echo @@@@ Waiting for 5 minutes + sleep 300 if [ $? -ne 0 ]; then echo "Error: Command '$command' failed" | tee -a "$LOG_FILE"