franz 1.4.16 → 1.4.17
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/franz +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ab44357e123021445433712cc09fa2592d54f68
|
4
|
+
data.tar.gz: cf0fba02898d0b60f34e58483b33e29a7e9f6912
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94b926995ab495c2aef47f8516f01e675ca0b245ee797c5ff6e3e68e7255aa9797a88438f273f41e063b247e08f52edbf3740f9082a010c512a4dbfa894f907c
|
7
|
+
data.tar.gz: 5d177b6293dc91b42fdaae58648bdea77446d7e2b9046c142c1ed62c0378a984dd1c9c5ea4fb834c094879cd28032e0367c94b22ef58e0d05530a0d816f0f610
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.17
|
data/bin/franz
CHANGED
@@ -45,7 +45,9 @@ config = Franz::Config.new opts[:config]
|
|
45
45
|
logger = Franz::Logger.new opts[:debug], opts[:trace], opts[:log]
|
46
46
|
|
47
47
|
io_bound = config[:output][:bound] || 10_000
|
48
|
-
io =
|
48
|
+
io = Queue.new
|
49
|
+
io = SizedQueue.new io_bound if io_bound > 0
|
50
|
+
|
49
51
|
|
50
52
|
# Now we'll connect to our output, RabbitMQ. This creates a new thread in the
|
51
53
|
# background, which will consume the events generated by our input on io
|