Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(PE-38421) avoid stack overflow in event collection
See https://stuartsierra.com/2015/04/26/clojure-donts-concat As was seen in the field, the event concatenation can cause a stack overflow for a large number of events. This modifies the loop for retrieving events to use `into` instead of `concat` which prevents the stack overflow by collecting the results into a new vector with every iteration.
- Loading branch information