summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-02-03 16:55:26 -0700
committermo khan <mo@mokhan.ca>2015-02-03 16:55:26 -0700
commit6051853bd0f732c1593dfdfe0b9294f1c7400c15 (patch)
tree288f6a4933c95676d9c0ae3c75afc28d29a54e27 /lib
parent9cb0e6f157263c90ef7ee50beb7bba25c7377bf7 (diff)
fix binding.
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/rabbitmq.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/rabbitmq.rake b/lib/tasks/rabbitmq.rake
index 6c8e3d2..185f993 100644
--- a/lib/tasks/rabbitmq.rake
+++ b/lib/tasks/rabbitmq.rake
@@ -10,7 +10,7 @@ namespace :rabbitmq do
exchange = channel.fanout("malwer.events")
# get or create queue (note the durable setting)
- queue = channel.queue("dashboard.events", durable: true)
+ queue = channel.queue("worker.events", durable: true)
# bind queue to exchange
queue.bind("malwer.events")
connection.close