Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/Platform/Jobs/UnlockPlayerAchievementJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ class UnlockPlayerAchievementJob implements ShouldQueue
use Queueable;
use SerializesModels;

public int $tries = 3;
public array $backoff = [10, 30];

public function __construct(
private readonly int $userId,
private readonly int $achievementId,
Expand Down
2 changes: 1 addition & 1 deletion app/Support/Alerts/Jobs/SendAlertWebhookJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SendAlertWebhookJob implements ShouldQueue
use SerializesModels;

public int $tries = 3;
public array $backoff = [10, 30, 60];
public array $backoff = [10, 30];

/**
* Optional HTTP client for testing. Not serialized with the job.
Expand Down