diff --git a/src/app/Jobs/WalletCharge.php b/src/app/Jobs/WalletCharge.php index ab98ef61..b747b9ab 100644 --- a/src/app/Jobs/WalletCharge.php +++ b/src/app/Jobs/WalletCharge.php @@ -1,60 +1,60 @@ walletId = $walletId; } /** * Number of seconds to wait before retrying the job. * * @return array */ public function backoff(): array { - return [10, 30, 60, 120]; + return [10, 30, 60, 120, 300]; } /** * Execute the job. * * @return void */ public function handle() { if ($wallet = Wallet::find($this->walletId)) { PaymentsController::topUpWallet($wallet); } } }