Are you sure? Your setup looks OK.
Jan 21, 2021
12
Level 33
Laravel Forge: Scheduled Artisan Commands not running
I am trying to figure out why the scheduled commands are running as scheduled. This is how it is set-up.
Scheduler Tab: https://share.getcloudapp.com/xQuYBy7G
Daemon Tab: https://share.getcloudapp.com/yAuZwd06
kernel.php
protected function schedule(Schedule $schedule)
{
$schedule->command('telescope:prune')->daily();
$schedule->command('database:backup')->daily();
$schedule->command('media-library:delete-old-temporary-uploads')->daily();
$schedule->command('uam:troll-sales-day')
->timezone('UTC')
->weekdays()
->everyFiveMinutes()
->environments('production');
$schedule->command('uam:troll-shipments')
->weekdays()
->everyMinute()
->environments('production');
$schedule->command('uam:troll-quotes')
->weekdays()
->everyThirtyMinutes()
->environments('production');
$schedule->command('uam:troll-project-totals')
->weekdays()
->everyThirtyMinutes()
->environments('production');
$schedule->command('uam:troll-lot-parts-sold')
->weekdays()
->everyThirtyMinutes()
->environments('production');
}
Level 61
Try deleting that scheduled job and creating a new one in https://forge.laravel.com/servers/xxxxxx#/scheduler
Please or to participate in this conversation.