mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
fix: server not found
This commit is contained in:
parent
70c662daf8
commit
ef595dd4c2
1 changed files with 3 additions and 0 deletions
|
|
@ -391,6 +391,9 @@ class Server extends BaseModel
|
|||
public function validateConnection()
|
||||
{
|
||||
$server = Server::find($this->id);
|
||||
if (!$server) {
|
||||
return false;
|
||||
}
|
||||
if ($server->skipServer()) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue