feat: debuggable executeNow commands

This commit is contained in:
Andras Bacsai
2023-04-14 13:18:55 +02:00
parent 1ba57ef6c3
commit 14919980c2
5 changed files with 42 additions and 23 deletions

View File

@@ -19,6 +19,14 @@ class ContainerStatusJob implements ShouldQueue
public string|null $container_id = null,
) {
}
public function handle(): void
{
if ($this->container_id) {
$this->checkContainerStatus();
} else {
$this->checkAllServers();
}
}
protected function checkAllServers()
{
try {
@@ -69,12 +77,4 @@ class ContainerStatusJob implements ShouldQueue
Log::error($e->getMessage());
}
}
public function handle(): void
{
if ($this->container_id) {
$this->checkContainerStatus();
} else {
$this->checkAllServers();
}
}
}