blob: 6dd6425e4b2365f471722418ef163530cf7e4dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# 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".
config = dict(
{% if env != 'staging' %}
endpoints={
"anitya-public-relay": [
"tcp://anitya-frontend01.fedoraproject.org:9940",
],
},
{% endif %}
)
|