我的调度程序中有几个作业:
protected function schedule(Schedule $schedule)
{
$schedule->job(new PingDatabase())->everyFiveMinutes();
$schedule->job(new ImportInstagram())->hourly();
$schedule->job(new ImportBlog())->hourly();
$schedule->job(new SendEmails())->dailyAt('11:00');
}
我刚刚意识到今天SendEmails的工作没有被触发。 这可能是因为我使用同步队列驱动程序并且作业耗时太长了吗?