From cdda17113849232b6a01a2d646be7beac319ab63 Mon Sep 17 00:00:00 2001 From: Victor Ng Date: Thu, 27 Oct 2011 20:45:35 -0400 Subject: [PATCH] reverted the initializer back to what is in logstash mainline --- lib/logstash/filters/grok.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/logstash/filters/grok.rb b/lib/logstash/filters/grok.rb index a230a59ab..ef1c6a744 100644 --- a/lib/logstash/filters/grok.rb +++ b/lib/logstash/filters/grok.rb @@ -103,8 +103,7 @@ class LogStash::Filters::Grok < LogStash::Filters::Base public def initialize(params) - super - + super(params) @match["@message"] ||= [] @match["@message"] += @pattern if @pattern # the config 'pattern' value (array) end