From 64fe94cf61523c437726e6dab2860f2b6f9247d3 Mon Sep 17 00:00:00 2001 From: Ben Shum Date: Sun, 8 Sep 2019 17:21:18 -0400 Subject: [PATCH] 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 --- Open-ILS/src/perlmods/live_t/29-lp1817645-remoteauth-patron-api.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 ); -- 2.11.0