From abdf5bcb612a86422d183ba831a03c413be290e9 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Fri, 2 May 2025 15:14:18 -0500 Subject: [PATCH] Remove timeout from listener readiness check in runtest.sh --- runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtest.sh b/runtest.sh index 54897ec..01a8896 100755 --- a/runtest.sh +++ b/runtest.sh @@ -179,7 +179,7 @@ for ((COUNTER = 1; COUNTER <= NUM_TESTS; COUNTER++)); do LISTENER_PID=$! # Wait for the READY_FILE to contain "LISTENING_STARTED" - timeout 5 bash -c "until grep -q LISTENING_STARTED $READY_FILE; do sleep 0.2; done" + bash -c "until grep -q LISTENING_STARTED $READY_FILE; do sleep 0.2; done" fi log " Sample $i of $NUM_SAMPLES"