turn off docker engien restart for now

This commit is contained in:
Andras Bacsai 2024-05-27 14:16:10 +02:00
parent 035e145cd1
commit 3c41608ee9

View File

@ -47,13 +47,17 @@ public function handle()
if (config('coolify.is_sentinel_enabled')) {
$this->server->checkSentinel();
}
$this->check_docker_engine();
}
} catch (\Throwable $e) {
send_internal_notification('ServerStatusJob failed with: ' . $e->getMessage());
ray($e->getMessage());
return handleError($e);
}
try {
// $this->check_docker_engine();
} catch (\Throwable $e) {
// Do nothing
}
}
private function check_docker_engine()
{