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 | b15caaa061091efcecfd1e8704e6f2c6bde4e03e (patch) | |
| tree | f523e1396f2994b97fb98b0db91a266e82e67d99 /qpid/ruby | |
| parent | 4a32a1d626f30b7679eaecdf98d0c3330b4d4c08 (diff) | |
| download | qpid-python-b15caaa061091efcecfd1e8704e6f2c6bde4e03e.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@713631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/ruby')
| -rw-r--r-- | qpid/ruby/lib/qpid/qmf.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/ruby/lib/qpid/qmf.rb b/qpid/ruby/lib/qpid/qmf.rb index e7dfae3e7e..2b7ab58e96 100644 --- a/qpid/ruby/lib/qpid/qmf.rb +++ b/qpid/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 |
