Fixes for regression in Scheduler (#3674)
This commit is contained in:
parent
e3e52987c3
commit
e5a0a73e86
|
|
@ -47,7 +47,7 @@ class Kernel extends ConsoleKernel
|
||||||
|
|
||||||
/* Run hosted specific jobs */
|
/* Run hosted specific jobs */
|
||||||
if(Ninja::isHosted()) {
|
if(Ninja::isHosted()) {
|
||||||
$schedule->json()->daily(new AdjustEmailQuota())->daily;
|
$schedule->job(new AdjustEmailQuota())->daily();
|
||||||
$schedule->job(new SendFailedEmails())->daily();
|
$schedule->job(new SendFailedEmails())->daily();
|
||||||
}
|
}
|
||||||
/* Run queue's in shared hosting with this*/
|
/* Run queue's in shared hosting with this*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue