1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Merge branch 'v5-develop' of https://github.com/turbo124/invoiceninja into v5-develop

This commit is contained in:
David Bomba 2023-05-20 12:04:14 +10:00
commit 589fc20a22
4 changed files with 10 additions and 3 deletions

View File

@ -72,7 +72,9 @@ class NinjaMailerJob implements ShouldQueue
public function backoff()
{
return [5, 10, 30, 240];
// return [5, 10, 30, 240];
return [rand(5, 10), rand(30, 40), rand(60, 79), rand(160, 400)];
}
public function handle()

View File

@ -63,7 +63,9 @@ class WebhookSingle implements ShouldQueue
public function backoff()
{
return [15, 35, 65, 185, 3605];
// return [15, 35, 65, 185, 3605];
return [rand(10, 15), rand(30, 40), rand(60, 79), rand(160, 200), rand(3000, 5000)];
}
/**

View File

@ -75,7 +75,8 @@ class Email implements ShouldQueue
*/
public function backoff()
{
return [10, 30, 60, 240];
// return [10, 30, 60, 240];
return [rand(5, 10), rand(30, 40), rand(60, 79), rand(160, 400)];
}
public function handle()

View File

@ -5092,6 +5092,8 @@ $LANG = array(
'duties' => 'Duties',
'order_number' => 'Order Number',
'order_id' => 'Order',
'total_invoices_outstanding' => 'Total Invoices Outstanding',
'recent_activity' => 'Recent Activity',
);