Skip to content

Commit

Permalink
Merge pull request wolfSSL#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 and jefferyq2 committed Jun 9, 2024
1 parent bde5564 commit 9028be7
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 9028be7

Please sign in to comment.