From: Ben Shum Date: Sun, 8 Sep 2019 21:21:18 +0000 (-0400) Subject: LP#1817645: fix live perl test for basic auth API X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c9404f643c5ad18440f8a5cd0ef117592ea398ce;p=evergreen%2Fmasslnc.git LP#1817645: fix live perl test for basic auth API The live perl test is failing because we are not passing all the right parameters for ignoring the SSL certificate verification checks. Pass another variable to see if this helps. Signed-off-by: Ben Shum Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/perlmods/live_t/29-lp1817645-remoteauth-patron-api.t b/Open-ILS/src/perlmods/live_t/29-lp1817645-remoteauth-patron-api.t index 6732d6c15b..e2c7bb28b7 100644 --- a/Open-ILS/src/perlmods/live_t/29-lp1817645-remoteauth-patron-api.t +++ b/Open-ILS/src/perlmods/live_t/29-lp1817645-remoteauth-patron-api.t @@ -40,7 +40,10 @@ my $e = new_editor( authtoken => $staff_login->{payload}->{authtoken} ); $e->init; my $client = LWP::UserAgent->new; -$client->ssl_opts( verify_hostname => 0 ); +$client->ssl_opts( + SSL_verify_mode => 0, + verify_hostname => 0 +); # my $res = $client->request( $method, $uri, $headers, $content, $request_timeout );