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:
commit
589fc20a22
@ -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()
|
||||
|
@ -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)];
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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()
|
||||
|
@ -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',
|
||||
);
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user