Skip to content

Commit

Permalink
refactor(global): Increase command schedule predict contact to hourly
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Mar 20, 2024
1 parent 0fb40c7 commit 5aad2b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Kernel extends ConsoleKernel
protected function schedule(Schedule $schedule): void
{
$schedule->command('crm:notification-reminder:send')->everyFiveMinutes();
$schedule->command('crm:contact:email-predict')->dailyAt('23:00');
$schedule->command('crm:contact:email-predict')->hourly();
$schedule->command('crm:email:validate')->dailyAt('00:00');
$schedule->command('crm:phone:validate')->dailyAt('01:00');
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

const APP_VERSION = '3.9.6';
const APP_VERSION = '3.9.8';

0 comments on commit 5aad2b8

Please sign in to comment.