Merge branch 'master' of github.com:startupseven/logstash

This commit is contained in:
Ryan Ausanka-Crues 2011-01-25 09:25:26 -08:00
commit 911fa4912d

View file

@ -80,7 +80,7 @@ class LogStash::Filters::Grep < LogStash::Filters::Base
next
end
if event[field].empty? and match["negate"] == true
if event[field] == nil and match["negate"] == true
match_count += 1
end
event[field].each do |value|