- time must be in UTC (LOGSTASH-1295)

This commit is contained in:
Jordan Sissel 2013-09-13 09:53:40 -07:00
parent 5c871fd1a0
commit e2faca1b36

View file

@ -154,7 +154,7 @@ class LogStash::Codecs::Multiline < LogStash::Codecs::Base
end # def decode
def buffer(text)
@time = Time.now if @buffer.empty?
@time = Time.now.utc if @buffer.empty?
@buffer << text
end