promiscuous 0.21.0 → 0.21.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/promiscuous/amqp/rubyamqp.rb +1 -1
- data/lib/promiscuous/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -21,7 +21,7 @@ module Promiscuous
|
|
21
21
|
end
|
22
22
|
|
23
23
|
connection = ::AMQP.connect(amqp_options)
|
24
|
-
self.channel = ::AMQP::Channel.new(connection, :auto_recovery => true)
|
24
|
+
self.channel = ::AMQP::Channel.new(connection, :auto_recovery => true, :prefetch => 100)
|
25
25
|
|
26
26
|
connection.on_tcp_connection_loss do |conn|
|
27
27
|
unless conn.reconnecting?
|
data/lib/promiscuous/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: promiscuous
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.21.
|
4
|
+
version: 0.21.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -118,8 +118,8 @@ extensions: []
|
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
120
|
- lib/promiscuous/amqp/null.rb
|
121
|
-
- lib/promiscuous/amqp/rubyamqp.rb
|
122
121
|
- lib/promiscuous/amqp/bunny.rb
|
122
|
+
- lib/promiscuous/amqp/rubyamqp.rb
|
123
123
|
- lib/promiscuous/common/lint.rb
|
124
124
|
- lib/promiscuous/common/lint/base.rb
|
125
125
|
- lib/promiscuous/common/class_helpers.rb
|