From 4409c40053707746b45406978f60a9118696f216 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 20 May 2023 19:27:10 +1000 Subject: [PATCH] Fixes for backoff --- app/Services/Email/Email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Email/Email.php b/app/Services/Email/Email.php index 6f0488c2be96..ac606a0b2e9e 100644 --- a/app/Services/Email/Email.php +++ b/app/Services/Email/Email.php @@ -76,7 +76,7 @@ class Email implements ShouldQueue public function backoff() { // return [10, 30, 60, 240]; - return [rand(5, 10), rand(30, 40), rand(60, 79), rand(160, 400)]; + return [rand(10, 20), rand(30, 45), rand(60, 79), rand(160, 400)]; } public function handle()