Merge pull request #5633 from nurdism/main

Fix: Docker Cleanup stuck on "In Progress"
This commit is contained in:
Andras Bacsai
2025-04-18 09:51:22 +02:00
committed by GitHub
2 changed files with 137 additions and 76 deletions

View File

@@ -31,7 +31,7 @@ class DockerCleanupJob implements ShouldBeEncrypted, ShouldQueue
public function middleware(): array
{
return [(new WithoutOverlapping($this->server->uuid))->dontRelease()];
return [(new WithoutOverlapping($this->server->uuid))->expireAfter(600)];
}
public function __construct(public Server $server, public bool $manualCleanup = false) {}