ansible/roles/fedmsg/base/templates/endpoints-anitya.py.j2

14 lines
370 B
Text
Raw Normal View History

2014-10-03 18:16:02 +00:00
# This tells our nodes to also pull messages from anitya.
# Among those nodes is our public gateway which means that it will forward them
# back out to the public on "our bus".
2014-10-02 09:11:17 +02:00
config = dict(
2014-10-03 18:16:02 +00:00
{% if env != 'staging' %}
2014-10-02 09:11:17 +02:00
endpoints={
2014-10-03 18:16:02 +00:00
"anitya-public-relay": [
2014-10-03 19:38:12 +00:00
"tcp://anitya-frontend01.fedoraproject.org:9940",
],
2014-10-02 09:11:17 +02:00
},
2014-10-03 18:16:02 +00:00
{% endif %}
2014-10-02 09:11:17 +02:00
)