From c622c7f2a93afd86126e952cf18ed9f1f82852b2 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Mon, 19 Jul 2021 13:23:12 -0600 Subject: (minor) typo fix: timeout variable timeout variable was inconsistently spelled in helper function Signed-off-by: Ed Santiago --- test/apiv2/test-apiv2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/apiv2/test-apiv2 b/test/apiv2/test-apiv2 index 9f6bf257f..26619ae03 100755 --- a/test/apiv2/test-apiv2 +++ b/test/apiv2/test-apiv2 @@ -442,10 +442,10 @@ function random_string() { function wait_for_port() { local host=$1 # Probably "localhost" local port=$2 # Numeric port - local timeout=${3:-5} # Optional; default to 5 seconds + local _timeout=${3:-5} # Optional; default to 5 seconds # Wait - while [ $timeout -gt 0 ]; do + while [ $_timeout -gt 0 ]; do { exec 3<> /dev/tcp/$host/$port; } &>/dev/null && return sleep 1 _timeout=$(( $_timeout - 1 )) -- cgit v1.2.3-54-g00ecf