1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Fixes for backoff

This commit is contained in:
David Bomba 2023-05-20 19:27:10 +10:00
parent 33acfeae9e
commit 4409c40053

View File

@ -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()