diff options
| author | Ted Ross <tross@apache.org> | 2008-11-13 04:15:15 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-11-13 04:15:15 +0000 |
| commit | 45b4ce55e9bb52f9d753b9e61ec19f07dc9f5009 (patch) | |
| tree | 2e976b7d615f521ae5f8cdfb6432faaa6233402b /ruby | |
| parent | 44d591ab8b7a1edf567ce6f2fba170cdf619ade1 (diff) | |
| download | qpid-python-45b4ce55e9bb52f9d753b9e61ec19f07dc9f5009.tar.gz | |
Updated qmf-agent API to allow user to specify uid, password, mechanism, and protocol.
Fixed qmf-console bug related to routing keys of object messages.
Pass the binding key into the management agent to allow for selective broadcast
of object data.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@713631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'ruby')
| -rw-r--r-- | ruby/lib/qpid/qmf.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/lib/qpid/qmf.rb b/ruby/lib/qpid/qmf.rb index e7dfae3e7e..2b7ab58e96 100644 --- a/ruby/lib/qpid/qmf.rb +++ b/ruby/lib/qpid/qmf.rb @@ -217,7 +217,7 @@ module Qpid::Qmf @brokers.each do |broker| args = { :exchange => "qpid.management", :queue => broker.topicName, - :binding_key => "console.obj.#{package_name}" } + :binding_key => "console.obj.#{package_name}.#" } broker.amqpSession.exchange_bind(args) end end @@ -230,7 +230,7 @@ module Qpid::Qmf @brokers.each do |broker| args = { :exchange => "qpid.management", :queue => broker.topicName, - :binding_key => "console.obj.#{pname}.#{cname}" } + :binding_key => "console.obj.#{pname}.#{cname}.#" } broker.amqpSession.exchange_bind(args) end end |
