Internal cron scheduler is blocking view responses #167
Notifications
Due Date
No due date set.
Blocks
#166 Scheduler triggers
Tooloop/Caramel-CRM
Reference: Tooloop/Caramel-CRM#167
Reference in New Issue
Block a user
The logic
ScheduleListenerclass is making sure, the scheduler is running at most once a minute.It’s triggered by the
RouteMatchedevent and registered inEventServiceProvider.However as the
caldav:synccommand is scheduled once a minute, this often blocks the request.That’s only an issue for internal scheduling and won’t affect cron or webcron scheduling.
Maybe Laravels Concurrency feature can be used.