summaryrefslogtreecommitdiffstats
path: root/roles/fedmsg/base/templates/endpoints-github2fedmsg.py.j2
blob: d821d3701e7764b97476fce446bcb1f76b16bd23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% if env == 'staging' %}
suffix  = 'stg.phx2.fedoraproject.org'
{% else %}
suffix = 'phx2.fedoraproject.org'
{% endif %}

config = dict(
    endpoints={
        "github2fedmsg.github2fedmsg01": [
            "tcp://github2fedmsg01.%s:30%02i" % (suffix, i)
            for i in range(16)
        ],
    },
)