Skip to content

Commit

Permalink
Merge pull request #7623 from bandi13/FixOpenSSLTest
Browse files Browse the repository at this point in the history
Sometimes the first call hangs because the server is not completely up
  • Loading branch information
JacobBarthelmeh authored Jun 6, 2024
2 parents b69482f + fbb2737 commit 29df901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/openssl.test
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ check_server_ready() {
server_ready=0
while [ "$counter" -lt 20 ]; do
echo -e "waiting for $server_name ready..."
echo -e Checking | nc localhost $server_port
echo -e Checking | nc -w 5 localhost $server_port
nc_result=$?
if [ $nc_result = 0 ]
then
Expand Down

0 comments on commit 29df901

Please sign in to comment.