fix(jobs): update middleware to use expireAfter for WithoutOverlapping in multiple job classes

This commit is contained in:
Andras Bacsai
2025-07-01 10:50:27 +02:00
parent 2a2a99d256
commit 24688b2ad8
6 changed files with 7 additions and 7 deletions

View File

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