events:dispatch only processes events by batch of 15 events #829
-
|
I had > 400 pending events (added a lot of stuff to one of my backend with webhooks enabled) and Is there a reason for this limit? Maybe the CLI could offer a flag to set the max number of events to process during each run? |
Beta Was this translation helpful? Give feedback.
Answered by
arabcoders
May 19, 2026
Replies: 1 comment 3 replies
-
|
There is no real reason, it's inherited from EventsRepository which we also use for API response which has 15 as default, we could add flag to increase it. There is a concern the dispatched event logs will overflow as we cap them to 200 lines afaik. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
arabcoders
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is no real reason, it's inherited from EventsRepository which we also use for API response which has 15 as default, we could add flag to increase it. There is a concern the dispatched event logs will overflow as we cap them to 200 lines afaik.
8a03e82