diff options
| author | James Turnbull <james@lovedthanlost.net> | 2011-04-20 02:35:40 +1000 |
|---|---|---|
| committer | Josh Cooper <josh@puppetlabs.com> | 2011-04-20 09:39:44 -0700 |
| commit | 9a5bf6e25d5871bda3252028c02846bfb2d8708b (patch) | |
| tree | 6aee2ff06de50d332140556e4b46ec6dafd8d9bc /lib/puppet/indirector | |
| parent | 72cd6fb383335a62d2d1ab656cdff39c34de0f19 (diff) | |
| download | puppet-9a5bf6e25d5871bda3252028c02846bfb2d8708b.tar.gz puppet-9a5bf6e25d5871bda3252028c02846bfb2d8708b.tar.xz puppet-9a5bf6e25d5871bda3252028c02846bfb2d8708b.zip | |
Fixed #7166 - Replaced deprecated stomp "send" method with "publish"
The "send" method in the stomp gem has been deprecated since:
http://gitorious.org/stomp/mainline/commit/d542a976028cb4c5badcbb69e3383e746721e44c
It's been replaced with the "publish" method.
Also renamed the send_message method to publish_message more in
keeping with language used in queuing.
Diffstat (limited to 'lib/puppet/indirector')
| -rw-r--r-- | lib/puppet/indirector/queue.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/indirector/queue.rb b/lib/puppet/indirector/queue.rb index fd089f431..85ffacacc 100644 --- a/lib/puppet/indirector/queue.rb +++ b/lib/puppet/indirector/queue.rb @@ -36,7 +36,7 @@ class Puppet::Indirector::Queue < Puppet::Indirector::Terminus def save(request) result = nil benchmark :info, "Queued #{indirection.name} for #{request.key}" do - result = client.send_message(queue, request.instance.render(:pson)) + result = client.publish_message(queue, request.instance.render(:pson)) end result rescue => detail |
