Skip to content

Commit

Permalink
Allow Guzzle to throw exceptions; Validate Grouper's certificate (bec…
Browse files Browse the repository at this point in the history
…ause Kristaps said so)
  • Loading branch information
RossIV committed Sep 15, 2024
1 parent 5904f93 commit c39429d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Services/Grouper.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ public static function client(): Client
],
'auth' => [config('grouper.username'), config('grouper.password')],
'allow_redirects' => false,
'http_errors' => false,
'verify' => false,
'http_errors' => true,
'verify' => '/etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem',
]
);

Expand Down

0 comments on commit c39429d

Please sign in to comment.