feat: debuggable executeNow commands
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user