Fix config file and queue parameters
This commit is contained in:
parent
389bd76a14
commit
07d0ee605e
2 changed files with 19 additions and 7 deletions
|
@ -44,7 +44,9 @@
|
|||
rabbitmq_queue:
|
||||
name: amqp_bridge_verify_missing
|
||||
vhost: /pubsub
|
||||
auto_delete: True
|
||||
durable: True
|
||||
auto_delete: False
|
||||
message_ttl: 60000
|
||||
login_user: admin
|
||||
login_password: "{{ rabbitmq_admin_password_staging }}"
|
||||
tags:
|
||||
|
|
|
@ -151,6 +151,22 @@ data:
|
|||
]
|
||||
|
||||
[verify_missing]
|
||||
# The queue to setup
|
||||
[verify_missing.queue]
|
||||
queue = "amqp_bridge_verify_missing"
|
||||
durable = true
|
||||
auto_delete = false
|
||||
exclusive = false
|
||||
arguments = {"x-message-ttl": 60000}
|
||||
# The exchanges to declare
|
||||
[[verify_missing.exchanges]]
|
||||
exchange = "amq.topic"
|
||||
exchange_type = "topic"
|
||||
durable = true
|
||||
[[verify_missing.exchanges]]
|
||||
exchange = "zmq.topic"
|
||||
exchange_type = "topic"
|
||||
durable = true
|
||||
# The bindings to use for the AMQP queue
|
||||
[[verify_missing.bindings]]
|
||||
exchange = "zmq.topic"
|
||||
|
@ -160,12 +176,6 @@ data:
|
|||
exchange = "amq.topic"
|
||||
queue = "amqp_bridge_verify_missing"
|
||||
routing_keys = ["#"]
|
||||
|
||||
[queues.verify_missing]
|
||||
durable = true
|
||||
auto_delete = false
|
||||
exclusive = false
|
||||
arguments = {}
|
||||
|
||||
[log_config]
|
||||
version = 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue