Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent mutable script params reference from leaking into pipeline (#…
…23534) A reference to a list contained in the `script` processor's `params` was leaking into the rest of the pipeline and then being modified by later processors. Now a copy of the List is written into the event. For concurrent processing this resulted in `ConcurrentModificationException`s, but I assume it led to incorrect `event.type` values in single worker deployments because the `params` object was modified.
- Loading branch information