openqa/dispatcher: add zmq exchange binding to messaging configs
Otherwise we don't get messages from the ZMQ->AMQP bridge. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
080701af48
commit
42a9b50f05
3 changed files with 38 additions and 0 deletions
|
@ -62,6 +62,19 @@ routing_keys = ["org.fedoraproject.{{ deployment_type }}.openqa.job.done"]
|
|||
{% else %}
|
||||
routing_keys = ["org.fedoraproject.prod.openqa.job.done"]
|
||||
{% endif %}
|
||||
# need this to receive messages from ZMQ->AMQP bridge
|
||||
[[bindings]]
|
||||
{% if deployment_type is defined %}
|
||||
queue = "openqa{{ openqa_env_suffix }}_resultsdb_reporter"
|
||||
{% else %}
|
||||
queue = "{{ openqa_resultsdb_reporter_uuid }}"
|
||||
{% endif %}
|
||||
exchange = "zmq.topic"
|
||||
{% if deployment_type is defined %}
|
||||
routing_keys = ["org.fedoraproject.{{ deployment_type }}.openqa.job.done"]
|
||||
{% else %}
|
||||
routing_keys = ["org.fedoraproject.prod.openqa.job.done"]
|
||||
{% endif %}
|
||||
|
||||
[consumer_config]
|
||||
openqa_hostname = "{{ openqa_hostname }}"
|
||||
|
|
|
@ -63,6 +63,18 @@ exchange = "amq.topic"
|
|||
routing_keys = ["org.fedoraproject.prod.pungi.compose.status.change",
|
||||
"org.fedoraproject.prod.bodhi.update.request.testing",
|
||||
"org.fedoraproject.prod.bodhi.update.edit"]
|
||||
# need this to receive messages from ZMQ->AMQP bridge
|
||||
[[bindings]]
|
||||
{% if deployment_type is defined %}
|
||||
queue = "openqa{{ openqa_env_suffix }}_scheduler"
|
||||
{% else %}
|
||||
queue = "{{ openqa_scheduler_uuid }}"
|
||||
{% endif %}
|
||||
exchange = "zmq.topic"
|
||||
routing_keys = ["org.fedoraproject.prod.pungi.compose.status.change",
|
||||
"org.fedoraproject.prod.bodhi.update.request.testing",
|
||||
"org.fedoraproject.prod.bodhi.update.edit"]
|
||||
|
||||
|
||||
[consumer_config]
|
||||
openqa_hostname = "{{ openqa_hostname }}"
|
||||
|
|
|
@ -62,6 +62,19 @@ routing_keys = ["org.fedoraproject.{{ deployment_type }}.openqa.job.done"]
|
|||
{% else %}
|
||||
routing_keys = ["org.fedoraproject.prod.openqa.job.done"]
|
||||
{% endif %}
|
||||
# need this to receive messages from ZMQ->AMQP bridge
|
||||
[[bindings]]
|
||||
{% if deployment_type is defined %}
|
||||
queue = "openqa{{ openqa_env_suffix }}_wiki_reporter"
|
||||
{% else %}
|
||||
queue = "{{ openqa_wiki_reporter_uuid }}"
|
||||
{% endif %}
|
||||
exchange = "zmq.topic"
|
||||
{% if deployment_type is defined %}
|
||||
routing_keys = ["org.fedoraproject.{{ deployment_type }}.openqa.job.done"]
|
||||
{% else %}
|
||||
routing_keys = ["org.fedoraproject.prod.openqa.job.done"]
|
||||
{% endif %}
|
||||
|
||||
[consumer_config]
|
||||
openqa_hostname = "{{ openqa_hostname }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue