Created
May 6, 2011 08:06
-
-
Save kennethkalmer/958594 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/ruote-amqp/participant.rb b/lib/ruote-amqp/participant.rb | |
index f6aa9c2..25bf604 100644 | |
--- a/lib/ruote-amqp/participant.rb | |
+++ b/lib/ruote-amqp/participant.rb | |
@@ -120,8 +120,6 @@ module RuoteAMQP | |
# | |
def initialize(options) | |
- RuoteAMQP.start! | |
- | |
@options = { | |
'queue' => nil, | |
'forget' => false, | |
@@ -139,6 +137,8 @@ module RuoteAMQP | |
# | |
def consume(workitem) | |
+ RuoteAMQP.start! | |
+ | |
target_queue = determine_queue(workitem) | |
raise 'no queue specified (outbound delivery)' unless target_queue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment