fix cron issues for UI and applications

This commit is contained in:
ayntk-ai 2024-08-16 22:05:38 +02:00
parent 9ab03e52a3
commit a0689ca5fc
No known key found for this signature in database
2 changed files with 22 additions and 21 deletions

View File

@ -34,9 +34,13 @@ public function server()
}
if ($this->task->application) {
return $this->task->application->server;
if ($this->task->application->destination && $this->task->application->destination->server) {
return $this->task->application->destination->server;
}
} elseif ($this->task->service) {
return $this->task->service->server;
if ($this->task->service->destination && $this->task->service->destination->server) {
return $this->task->service->destination->server;
}
}
return null;
}

View File

@ -4,6 +4,8 @@
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
use App\Models\Service;
use App\Models\Application;
class ScheduledTask extends BaseModel
{
@ -31,27 +33,22 @@ public function executions(): HasMany
public function server()
{
ray('Entering server() method in ScheduledTask model');
if ($this->application) {
ray('Returning server from application');
$server = $this->application->server;
ray('Returning server from application: '.$server);
return $server;
}
elseif ($this->database) {
ray('Returning server from database');
$server = $this->database->server;
ray('Returning server from database: '.$server);
return $server;
if ($this->application->destination && $this->application->destination->server) {
$server = $this->application->destination->server;
return $server;
}
} elseif ($this->service) {
ray('Returning server from service');
$server = $this->service->server;
ray('Returning server from service: '.$server);
return $server;
if ($this->service->destination && $this->service->destination->server) {
$server = $this->service->destination->server;
return $server;
}
} elseif ($this->database) {
if ($this->database->destination && $this->database->destination->server) {
$server = $this->database->destination->server;
return $server;
}
}
ray('No server found, returning null');
return null;
}
}
}