logstash-input-google_pubsub_compressed_batches 1.2.8 → 1.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of logstash-input-google_pubsub_compressed_batches might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab2e0aeae8e15e10b12ff8f7712ebedd491da001fff7c2487f7075ccc7c15812
4
- data.tar.gz: 5694615b192f9eb6c94ccf62ad67f5b532e9d052240844440beaf36d556403e0
3
+ metadata.gz: 1c757b9ec6f80a1ac100a968edb3123910bb83a255aab2f83958b341ed6d65c4
4
+ data.tar.gz: 3731b82b32aa9f78a1a384a703eb68d938db7c368d7fb9390079768edee98ec9
5
5
  SHA512:
6
- metadata.gz: 91e4df63bd6bac2fed3af62ef0e111578107f711ceae8ae5006429fcb0fc11c2d208705d546abeeaa43b68becff52d817c2c25940506fa774ada1009d0e507f4
7
- data.tar.gz: '0686c1d02cf3178c6f9ad5c982135570fa6b107572b4d1e90d408867f3186b64a18a0b3f5294d4479286addcfa4057b43aef96a48688bc15f141564fb653d25b'
6
+ metadata.gz: a9f0b13767faea45342772d857b4fd47e724b271ba2a0334a40f206f511b5e3ad6a3aa668c6f7c249feb48b6ed2062c1f9d5cbafeca83bbef0538dd9d911f874
7
+ data.tar.gz: 90ccd0e8298af8a9e241bbed2ff3f60aa213d593eca39398002f3a61998a938f4f96dd9c2c5fa856ff36e391d45b84b71a19b854133150cb06aac282367e7140
@@ -278,7 +278,8 @@ class LogStash::Inputs::GooglePubSub < LogStash::Inputs::Base
278
278
  while (rlen = iis.read(buf)) != -1 do
279
279
  result += java.lang.String.new(java.util.Arrays.copyOf(buf, rlen), "UTF-8")
280
280
  end
281
- rescue e
281
+ rescue StandardError => e
282
+ @logger.error("ERROR: #{e.message}")
282
283
  @logger.error(e.backtrace)
283
284
  raise e
284
285
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-google_pubsub_compressed_batches'
3
- s.version = '1.2.8'
3
+ s.version = '1.2.9'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = "Consume events from a Google Cloud PubSub service. Supports zlib compressed batches"
6
6
  s.description = "This gem is a Logstash input 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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-google_pubsub_compressed_batches
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.8
4
+ version: 1.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Johnson