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 11:22:40 +02:00
|
|
|
],
|
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
|
|
|
)
|