ansible/roles/fedmsg/hub/files/websockets.py
2014-07-17 01:52:44 +00:00

9 lines
273 B
Python

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