Commit 82992a41 authored by Matt Caswell's avatar Matt Caswell
Browse files

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: default avatarRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5088)
parent 7d461736
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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