From b7c688a2ad717f8be4b70ad072b29a61f7c2d803 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Mon, 25 Mar 2019 22:06:06 +0000 Subject: [PATCH] rabbitmq_cluster: Make the zmq.topic exchange a topic exchange The default type is direct, but we want topic. Signed-off-by: Jeremy Cline --- roles/rabbitmq_cluster/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/rabbitmq_cluster/tasks/main.yml b/roles/rabbitmq_cluster/tasks/main.yml index b3bb1b32e1..368fd725e7 100644 --- a/roles/rabbitmq_cluster/tasks/main.yml +++ b/roles/rabbitmq_cluster/tasks/main.yml @@ -202,6 +202,7 @@ delegate_to: "rabbitmq01{{ env_suffix }}.phx2.fedoraproject.org" rabbitmq_exchange: name: "zmq.topic" + exchange_type: "topic" vhost: "/public_pubsub" login_user: admin login_password: "{{ (env == 'production')|ternary(rabbitmq_admin_password_production, rabbitmq_admin_password_staging) }}"