From b2bd8b40c23c5525cda3a6a67c80b78a5168a6c9 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 17 Sep 2022 13:30:02 +1000 Subject: [PATCH] Increase backoff period --- app/Jobs/Mail/NinjaMailerJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Mail/NinjaMailerJob.php b/app/Jobs/Mail/NinjaMailerJob.php index 1b9331d8adb9..a04e9dbcd950 100644 --- a/app/Jobs/Mail/NinjaMailerJob.php +++ b/app/Jobs/Mail/NinjaMailerJob.php @@ -51,7 +51,7 @@ class NinjaMailerJob implements ShouldQueue public $tries = 3; //number of retries - public $backoff = 10; //seconds to wait until retry + public $backoff = 30; //seconds to wait until retry public $deleteWhenMissingModels = true;