Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Dec 27, 2024
1 parent a6d3788 commit 34c7dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/wait_for_local_port.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ wait_for_local_port() {
local ret=1
echo "waiting for UtapiServer:$port"
while [[ "$ret" -eq "1" && "$count" -lt "$timeout" ]] ; do
nc -z -w 1 localhost $port
nc -z -w 127.0.0.1 $port
ret=$?
if [ ! "$ret" -eq "0" ]; then
echo -n .
Expand Down

0 comments on commit 34c7dc6

Please sign in to comment.