fix: isolate tick errors per event, bound overlap lock

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BCrwHHnGCB5XH968Nxokqw
This commit is contained in:
nikita.hohlov
2026-09-04 07:46:35 -03:00
parent affac4ce1a
commit 6138ac7bb0
3 changed files with 37 additions and 2 deletions

View File

@@ -2,5 +2,5 @@
use Illuminate\Support\Facades\Schedule;
Schedule::command('hado:tick')->everyMinute()->withoutOverlapping()->runInBackground();
Schedule::command('hado:tick')->everyMinute()->withoutOverlapping(5)->runInBackground();
Schedule::command('hado:purge')->dailyAt('04:00');