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
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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.