verbose error

This commit is contained in:
Andras Bacsai 2023-06-22 21:02:32 +02:00
parent 4488f98900
commit 37646bcfa0

View File

@ -16,14 +16,12 @@ class PrivateKey extends Component
public function checkConnection() public function checkConnection()
{ {
try { try {
$uptime = instant_remote_process(['uptime'], $this->server, false); $uptime = instant_remote_process(['uptime'], $this->server);
if ($uptime) { if ($uptime) {
Toaster::success('Server is reachable with this private key.'); Toaster::success('Server is reachable with this private key.');
} else {
Toaster::error('Server is NOT reachable with this private key.');
} }
} catch (\Exception $e) { } catch (\Exception $e) {
return general_error_handler(err: $e, that: $this); return general_error_handler(customErrorMessage: "Server is not reachable. Reason: {$e->getMessage()}", that: $this);
} }
} }
public function setPrivateKey($private_key_id) public function setPrivateKey($private_key_id)