summaryrefslogtreecommitdiffstats
path: root/roles/fedmsg/hub/files/websockets.py
blob: 9563b6b9c092c5ba9746edafbbe904464bb1e2ad (plain)
1
2
3
4
5
6
7
8
9
config = {
    # The presence of this will cause fedmsg-hub to start its own websocket
    # server along with it.
    'moksha.livesocket.websocket.port': 9919,
}

# And... this is a hack to get python-txws to work with python-six on epel7
import six
six.PY2 = not six.PY3