openqa/dispatcher: fix AMQP URL variable usage

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-06-14 15:10:14 -07:00
parent f6b2ae6b53
commit 9fc61c17bd
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
#
# This file is in the TOML format.
amqp_url = "amqps://{{ openqa_amqp_reporter_url }}"
amqp_url = "{{ openqa_amqp_reporter_url }}"
{% if openqa_amqp_passive|bool %}
passive_declares = true
{% endif %}

View file

@ -4,7 +4,7 @@
#
# This file is in the TOML format.
amqp_url = "amqps://{{ openqa_amqp_scheduler_url }}"
amqp_url = "{{ openqa_amqp_scheduler_url }}"
{% if openqa_amqp_passive|bool %}
passive_declares = true
{% endif %}

View file

@ -4,7 +4,7 @@
#
# This file is in the TOML format.
amqp_url = "amqps://{{ openqa_amqp_reporter_url }}"
amqp_url = "{{ openqa_amqp_reporter_url }}"
{% if openqa_amqp_passive|bool %}
passive_declares = true
{% endif %}