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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c757b9ec6f80a1ac100a968edb3123910bb83a255aab2f83958b341ed6d65c4
|
|
4
|
+
data.tar.gz: 3731b82b32aa9f78a1a384a703eb68d938db7c368d7fb9390079768edee98ec9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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."
|