logstash-codec-multiline 3.0.9 → 3.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd8ef67f9e950b2a7e3cdce66e5e0f312e4f3b8744945c1f37567f678e8897b9
4
- data.tar.gz: 89276e53b4cca07f377748f4788fe6673062b3769e45fdc6ff21d277d5cc8f7a
3
+ metadata.gz: cb35d43947be73cfe1da71675564f567c72864988e1fb508f60ac438f455fe5b
4
+ data.tar.gz: 9e85086cf790c802f2a8b4fab7f1094fae5da1058a59ff1f757fb0f640adf64d
5
5
  SHA512:
6
- metadata.gz: 19f72ddf1623324f3d1e7c9d9b324c69ea76b9b92bbe993b75e044c763f242b4a673f87c93eaaf6680823ccd1327affe79d76e17c18516d2c7bbe3e8fee4a92b
7
- data.tar.gz: '049bd9fe61bbc84efa1a8e04d929d703de193426aacd8e6f008a40125c21bbfb9a3150c44fcea37225a8bbde001e73b5a2ee6d8947ab645f90d0fe539c62dcf3'
6
+ metadata.gz: 1cdca21464b4861c9d6b060a4508b112d738453c5fdd6fec6082f99f90d2a296e4faa95fcfcb64011895b6f83396a72dde890e37a7f6e4073e814e7b718a8bca
7
+ data.tar.gz: 2d798deb91fded2087340341e0e3c44baa342908a45cdbaec71869c33bd5eaade465602e11e344e3cee3c38ef3445b9cc781cb3bad5cce90ab66d9315a61afbd
@@ -1,3 +1,6 @@
1
+ ## 3.0.10
2
+ - Fixed [multiline codec - #32](https://github.com/logstash-plugins/logstash-codec-multiline/issues/32) `no method map_cleanup for nil class` error when shutting down.
3
+
1
4
  ## 3.0.9
2
5
  - Fixed concurrency issue causing random failures when multiline codec was used together with a multi-threaded input plugin
3
6
 
@@ -24,7 +24,7 @@ The multiline codec will collapse multiline messages and merge them into a
24
24
  single event.
25
25
 
26
26
  IMPORTANT: If you are using a Logstash input plugin that supports multiple
27
- hosts, such as the <<plugins-inputs-beats>> input plugin, you should not use
27
+ hosts, such as the {logstash-ref}/plugins-inputs-beats.html[beats input plugin], you should not use
28
28
  the multiline codec to handle multiline events. Doing so may result in the
29
29
  mixing of streams and corrupted event data. In this situation, you need to
30
30
  handle multiline events before sending the event data to Logstash.
@@ -52,6 +52,7 @@ module LogStash module Codecs class IdentityMapCodec
52
52
  while running? do
53
53
  sleep @interval
54
54
  break if !running?
55
+ break if @listener.nil?
55
56
  @listener.send(@method_symbol)
56
57
  end
57
58
  end
@@ -59,7 +60,7 @@ module LogStash module Codecs class IdentityMapCodec
59
60
  end
60
61
 
61
62
  def running?
62
- @running.value
63
+ @running.true?
63
64
  end
64
65
 
65
66
  def stop
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-multiline'
4
- s.version = '3.0.9'
4
+ s.version = '3.0.10'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Merges multiline messages into a single event"
7
7
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-multiline
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.9
4
+ version: 3.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-17 00:00:00.000000000 Z
11
+ date: 2018-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement