summaryrefslogtreecommitdiffstats
path: root/roles/fedmsg/base/templates/endpoints-bugzilla2fedmsg.py.j2
blob: cff567a8da8a274a911f0568290d62f0f4796cb0 (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={
        "bugzilla.bugzilla2fedmsg01": [
            "tcp://bugzilla2fedmsg01.%s:3000" % suffix,
            "tcp://bugzilla2fedmsg01.%s:3001" % suffix,
        ],
    },
)