Hi guys
The scheduler doesn't work properly. schedule:run will execute all scheduled tasks each time it is executed. To reproduce, add the following schedule to a command:
/**
* Define the command's schedule.
*/
public function schedule(Schedule $schedule): void
{
$schedule->command(static::class)->everyMinute();
}
Then run ./app schedule:run multiple times in a row. The command is executed each time.