fix: [https] errors caught by the health element
parent
e1ac7fe2e6
commit
20027f4d69
|
@ -104,6 +104,7 @@ class MispConnector extends CommonConnectorTools
|
|||
{
|
||||
$settings = json_decode($connection->settings, true);
|
||||
$http = new Client();
|
||||
try {
|
||||
$response = $http->post($settings['url'] . '/users/view/me.json', '{}', [
|
||||
'headers' => [
|
||||
'AUTHORIZATION' => $settings['authkey'],
|
||||
|
@ -111,6 +112,12 @@ class MispConnector extends CommonConnectorTools
|
|||
'Content-type' => 'Application/json'
|
||||
]
|
||||
]);
|
||||
} catch (\Exception $e) {
|
||||
return [
|
||||
'status' => 0,
|
||||
'message' => __('Connection issue.')
|
||||
];
|
||||
}
|
||||
$responseCode = $response->getStatusCode();
|
||||
if ($response->isOk()) {
|
||||
$status = 1;
|
||||
|
|
Loading…
Reference in New Issue