Remove '@' from '@message'

This commit is contained in:
Jordan Sissel 2013-06-19 10:03:38 -07:00
parent 9f1127beca
commit e48f05e607

View file

@ -142,7 +142,7 @@ describe "outputs/email" do
end end
end end
describe "match on @source and @message (LOGSTASH-826)" do describe "match on source and message (LOGSTASH-826)" do
config <<-CONFIG config <<-CONFIG
input { input {
generator { generator {
@ -156,7 +156,7 @@ describe "outputs/email" do
to => "me@host" to => "me@host"
subject => "Hello World" subject => "Hello World"
body => "Mail body" body => "Mail body"
match => ["messageAndSourceMatch", "@message,*hello,,and,@source,*generator"] match => ["messageAndSourceMatch", "message,*hello,,and,source,*generator"]
options => ["port", #{@@port}, "authenticationType", "nil"] options => ["port", #{@@port}, "authenticationType", "nil"]
} }
} }