logstash-input-google_pubsub_compressed_batches 1.2.11 → 1.2.12

Sign up to get free protection for your applications and to get access to all the features.

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: 97b987ec1d527c7bf2ea5c174971be5ea1b53619a18e1ae2dc0c4bb816a05ffa
4
- data.tar.gz: 4b0db4e37592a13ce618efb24cf8fb479d8a428cc797821775ea37addcfd0aa7
3
+ metadata.gz: c94e97169e789e893e030dfaf0edbfaeaa2364894c18bd98cfb73f9eb7101f2e
4
+ data.tar.gz: fa013dab3b9beab9d4b895e8f798153b59ea872df20fdff929cc014fdc74ee0d
5
5
  SHA512:
6
- metadata.gz: 2ee8f92380fa9f5efe2777974904ec9522524a0bb24128f3ef73884bb922247641dd409de066126da51f8511647138ed22383e9afd4734337fdf87c2de97fffe
7
- data.tar.gz: f6a4bd2c91a6a8daa7eb222cca9c32f18532126b56202893c4bf3e241322248aa44fb87164656ab783fa517325b64fbfbd53b61b123c685e66d098549b46671c
6
+ metadata.gz: 182675de637b75413e551fed12a1e2bb2d8a8add46cbd1f7d95815d1b3919f799700ca0550fc43528d5dfae59ede2496e0e4dd20191e0beda0bc431ea0a05f4f
7
+ data.tar.gz: 44ea843d95200793dd5371a91f350e32722824162543e1fd800bcb61391c657e813b752a59c906e5c7f0470b4b7f2d5b1a09fd49e6ae426d4a849008f5081a72
@@ -274,7 +274,7 @@ class LogStash::Inputs::GooglePubSub < LogStash::Inputs::Base
274
274
  iis = java.util.zip.InflaterInputStream.new(bais)
275
275
 
276
276
  result = ""
277
- buf = Java::byte[5].new
277
+ buf = Java::byte[8192].new
278
278
  rlen = -1
279
279
 
280
280
  while (rlen = iis.read(buf)) != -1 do
@@ -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.11'
3
+ s.version = '1.2.12'
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.11
4
+ version: 1.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Johnson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-01-21 00:00:00.000000000 Z
12
+ date: 2021-01-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: logstash-core-plugin-api