From c9404f643c5ad18440f8a5cd0ef117592ea398ce Mon Sep 17 00:00:00 2001 From: Ben Shum Date: Sun, 8 Sep 2019 17:21:18 -0400 Subject: [PATCH 1/1] 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 --- .../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.43.2