I am trying to execute two console commands.Below is my two commands in my Kernel.php
protected function schedule(Schedule $schedule)
{
$schedule->command('users:get')->everyMinute();
$schedule->command('users:update')->dailyAt('01:00');
}
When I run php artisan schedule:run, Only the command which is/are scheduled as everyMinute is scheduled.
Running scheduled command: '/usr/bin/php5' 'artisan' users:get > /dev/null 2>&1 &
If I change the dailyAt to everyMinute for the second command, both are scheduled as shown below
Running scheduled command: '/usr/bin/php5' 'artisan' users:get > /dev/null 2>&1 &
Running scheduled command: '/usr/bin/php5' 'artisan' users:update > /dev/null 2>&1 &
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire