amq-client 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -115,7 +115,7 @@ module AMQ
|
|
115
115
|
@auto_delete = auto_delete
|
116
116
|
@arguments = arguments
|
117
117
|
|
118
|
-
nowait = true if !block && !@name.empty?
|
118
|
+
nowait = true if !block && !@name.empty? && nowait.nil?
|
119
119
|
@connection.send_frame(Protocol::Queue::Declare.encode(@channel.id, @name, passive, durable, exclusive, auto_delete, nowait, arguments))
|
120
120
|
|
121
121
|
if !nowait
|
data/lib/amq/client/version.rb
CHANGED