From 3bdfef897ccf9c0aa56ae03dd2098e54a57a835b Mon Sep 17 00:00:00 2001 From: Dmitry Romanov Date: Tue, 17 Sep 2024 11:54:00 +0700 Subject: [PATCH] clear decoder pool after spawn --- pipeline/processor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pipeline/processor.go b/pipeline/processor.go index de4cd0eaa..232a32bfe 100644 --- a/pipeline/processor.go +++ b/pipeline/processor.go @@ -414,6 +414,7 @@ func (p *processor) Spawn(parent *Event, nodes []*insaneJSON.Node) { child.stage = eventStageOutput p.output.Out(child) } + child.Root.ReleaseMem() } if p.busyActionsTotal == 0 {