From f6a02237cf9d9528c57e92308621f7ed4f9e2952 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 18 Feb 2025 14:13:01 +0100 Subject: [PATCH] extend timeout to 1 minute --- acceptance/bin/wait_pid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/bin/wait_pid b/acceptance/bin/wait_pid index 6e28c144c..dfd0e1d56 100755 --- a/acceptance/bin/wait_pid +++ b/acceptance/bin/wait_pid @@ -5,7 +5,7 @@ # shell. This script is more general purpose. wait_pid() { local pid=$1 - local max_attempts=100 # 100 * 0.1 seconds = 10 seconds + local max_attempts=600 # 600 * 0.1 seconds = 1 Minute local attempt=0 local sleep_time=0.1