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:
|
rabbitmq_queue:
|
||||||
name: amqp_bridge_verify_missing
|
name: amqp_bridge_verify_missing
|
||||||
vhost: /pubsub
|
vhost: /pubsub
|
||||||
auto_delete: True
|
durable: True
|
||||||
|
auto_delete: False
|
||||||
|
message_ttl: 60000
|
||||||
login_user: admin
|
login_user: admin
|
||||||
login_password: "{{ rabbitmq_admin_password_staging }}"
|
login_password: "{{ rabbitmq_admin_password_staging }}"
|
||||||
tags:
|
tags:
|
||||||
|
|
|
@ -151,6 +151,22 @@ data:
|
||||||
]
|
]
|
||||||
|
|
||||||
[verify_missing]
|
[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
|
# The bindings to use for the AMQP queue
|
||||||
[[verify_missing.bindings]]
|
[[verify_missing.bindings]]
|
||||||
exchange = "zmq.topic"
|
exchange = "zmq.topic"
|
||||||
|
@ -161,12 +177,6 @@ data:
|
||||||
queue = "amqp_bridge_verify_missing"
|
queue = "amqp_bridge_verify_missing"
|
||||||
routing_keys = ["#"]
|
routing_keys = ["#"]
|
||||||
|
|
||||||
[queues.verify_missing]
|
|
||||||
durable = true
|
|
||||||
auto_delete = false
|
|
||||||
exclusive = false
|
|
||||||
arguments = {}
|
|
||||||
|
|
||||||
[log_config]
|
[log_config]
|
||||||
version = 1
|
version = 1
|
||||||
disable_existing_loggers = true
|
disable_existing_loggers = true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue