refactor(jobs): update WithoutOverlapping middleware to use expireAfter for better queue management

This commit is contained in:
Andras Bacsai
2025-04-18 09:52:32 +02:00
parent 1b60fd3eb2
commit b78f2cccff
4 changed files with 6 additions and 4 deletions

View File

@@ -17,11 +17,13 @@ class CleanupInstanceStuffsJob implements ShouldBeEncrypted, ShouldBeUnique, Sho
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $timeout = 60;
public function __construct() {}
public function middleware(): array
{
return [(new WithoutOverlapping('cleanup-instance-stuffs'))->dontRelease()];
return [(new WithoutOverlapping('cleanup-instance-stuffs'))->expireAfter(60)];
}
public function handle(): void