summaryrefslogtreecommitdiffstats
path: root/util/perl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-01-16 15:04:51 +0000
committerMatt Caswell <matt@openssl.org>2018-01-16 17:22:09 +0000
commit82992a4130e668c14ff66fca26170629b23c4556 (patch)
treeb710abe077869f5a47fa61a6962d1b0c95936130 /util/perl
parent7d461736f7bd3af3c2f266f8541034ecf6f41ed9 (diff)
Extend timeout for TLSProxy
I received this error from a TLSProxy test: Failed to start up server (localhost,4443): Transport endpoint is not connected So, extend the timeout before we give up trying to connect to the server. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5088)
Diffstat (limited to 'util/perl')
-rw-r--r--util/perl/TLSProxy/Proxy.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/perl/TLSProxy/Proxy.pm b/util/perl/TLSProxy/Proxy.pm
index cc21bd6ac9..d778d0e70d 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -255,7 +255,7 @@ sub clientstart
print "Connection opened\n";
# Now connect to the server
- my $retry = 10;
+ my $retry = 50;
my $server_sock;
#We loop over this a few times because sometimes s_server can take a while
#to start up