openshift-apps/coreos-ostree-importer: fedora_messaging_routing_keys is a list

I accidentally converted it to a string in 201a760.
This commit is contained in:
Dusty Mabe 2020-02-18 17:10:14 -05:00 committed by Pierre-Yves Chibon
parent e993bfdfb2
commit 8ac098594d

View file

@ -18,10 +18,12 @@
# Set the fedora_messaging_routing_keys var based on the environment
pre_tasks:
- set_fact:
fedora_messaging_routing_keys: "org.fedoraproject.stg.coreos.build.request.ostree-import"
fedora_messaging_routing_keys:
- "org.fedoraproject.stg.coreos.build.request.ostree-import"
when: env == 'staging'
- set_fact:
fedora_messaging_routing_keys: "org.fedoraproject.prod.coreos.build.request.ostree-import"
fedora_messaging_routing_keys:
- "org.fedoraproject.prod.coreos.build.request.ostree-import"
when: env != 'staging'
roles: