Loop the pagure fedmsg bus into the FI bus.

This commit is contained in:
Ralph Bean 2015-06-01 17:16:00 +00:00
parent f938d7df5e
commit aa0d5e17b8
2 changed files with 14 additions and 0 deletions

View file

@ -51,6 +51,7 @@
- ssl.py
- endpoints.py
- endpoints-anitya.py
- endpoints-pagure.py
- endpoints-fedocal.py
- endpoints-elections.py
- endpoints-fedbadges.py

View file

@ -0,0 +1,13 @@
# This tells our nodes to also pull messages from pagure.
# 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={
"pagure-public-relay": [
"tcp://pagure01.fedoraproject.org:9940",
],
},
{% endif %}
)