Merge pull request #291 from jamtur01/matchrequired

The match option is required for the email output plugin
This commit is contained in:
Jordan Sissel 2012-12-27 21:44:41 -08:00
commit ac1322e7b8

View file

@ -9,7 +9,7 @@ class LogStash::Outputs::Email < LogStash::Outputs::Base
# the registered fields that we want to monitor
# A hash of matches of field => value
config :match, :validate => :hash
config :match, :validate => :hash, :required => true
# the To address setting - fully qualified email address to send to
config :to, :validate => :string, :required => true