fix: invalid tz should not prevent other jobs to be executed

This commit is contained in:
Andras Bacsai
2024-11-14 10:56:56 +01:00
parent b0b81e4416
commit 8a917f6a4e
3 changed files with 52 additions and 39 deletions

View File

@@ -28,7 +28,7 @@ class ServerCheckJob implements ShouldBeEncrypted, ShouldQueue
public function middleware(): array
{
return [(new WithoutOverlapping($this->server->id))->dontRelease()];
return [(new WithoutOverlapping($this->server->uuid))->dontRelease()];
}
public function __construct(public Server $server) {}