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

This commit is contained in:
Jordan Sissel 2011-05-26 14:09:25 -07:00
commit fb51b442c1
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,8 @@
1.0.11 (???)
- Fix bug in grep filter that would drop/cancel events if you had more
than one event type flowing through filters and didn't have a grep
filter defined for each type.
1.0.10 (May 23, 2011)
- Fix tcp input bug (LOGSTASH-88) that would drop connections.
- Grok patterns_dir (filter config) and --grok-patterns-dir (cmdline opt)

View file

@ -42,7 +42,6 @@ class LogStash::Filters::Grep < LogStash::Filters::Base
def filter(event)
if event.type != @type
@logger.debug("grep: skipping type #{event.type} from #{event.source}")
event.cancel
return
end