Fix error in console scheduler spamming logs.

This commit is contained in:
Dane Everitt 2017-09-24 12:31:31 -05:00
parent 906a699ee2
commit c43ab595cf
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -46,7 +46,7 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('p:process:runnable')->everyMinute()->withoutOverlapping();
$schedule->command('p:schedule:process')->everyMinute()->withoutOverlapping();
$schedule->command('p:maintenance:clean-service-backups')->daily();
}
}