Issue #9158 has been updated by Daniel Pittman.
Digant Kasundra wrote: > I added the patch to your 2.7.3 package and I get the following error. That is kind of embarrassing. Apparently it isn't actually "obviously correct" when you call the method the object defines instead of the one you intended. :) https://github.com/daniel-pittman/puppet/commit/cd2d2f10355842e00b61ee65a1bb495a9c6e6d93.patch should fix that; can you test it and verify for me? Daniel ---------------------------------------- Bug #9158: Puppet master breaks on trying to send message to stomp queue https://projects.puppetlabs.com/issues/9158 Author: Digant Kasundra Status: In Topic Branch Pending Review Priority: High Assignee: Daniel Pittman Category: queuing Target version: 2.6.x Affected Puppet version: 2.7.1 Keywords: Branch: When a client checks in to the puppetmaster, the puppet master attempts to send a message to the stomp queue (if async stored configs is on) and in doing so attempts to use a method that doesn't exist. This effectively completely breaks puppet in 2.7.1 for us. The following patch will fix this: --- stomp.rb.orig 2011-08-22 17:30:16.000000000 -0700 +++ stomp.rb 2011-08-22 17:13:07.000000000 -0700 @@ -29,7 +29,7 @@ end def publish_message(target, msg) - stomp_client.publish(stompify_target(target), msg, :persistent => true) + stomp_client.send(stompify_target(target), msg, :persistent => true) end def subscribe(target) -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
