This commit is contained in:
Andras Bacsai
2023-12-20 11:59:53 +01:00
parent 64b58b7661
commit 27b6aad53a

View File

@@ -22,10 +22,10 @@ class ContainerStatusJob implements ShouldQueue, ShouldBeEncrypted
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $tries = 5; public $tries = 4;
public function backoff(): int public function backoff(): int
{ {
return isDev() ? 1 : 5; return isDev() ? 1 : 3;
} }
public function middleware(): array public function middleware(): array
{ {