Updated crash mail polling to every minute

This commit is contained in:
Deon George 2023-07-27 21:22:27 +10:00
parent ad8582ef52
commit ddb8c349b6
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule)
{
$schedule->job(new MailSend(TRUE))->everyFiveMinutes()->withoutOverlapping();
$schedule->job(new MailSend(TRUE))->everyMinute()->withoutOverlapping();
$schedule->job(new MailSend(FALSE))->twiceDaily(1,13);
}