Skip to content

Commit c43ab59

Browse files
committed
Fix error in console scheduler spamming logs.
1 parent 906a699 commit c43ab59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Console/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Kernel extends ConsoleKernel
4646
*/
4747
protected function schedule(Schedule $schedule)
4848
{
49-
$schedule->command('p:process:runnable')->everyMinute()->withoutOverlapping();
49+
$schedule->command('p:schedule:process')->everyMinute()->withoutOverlapping();
5050
$schedule->command('p:maintenance:clean-service-backups')->daily();
5151
}
5252
}

0 commit comments

Comments
 (0)