问题 I have a autobahn twisted websocket running in python which is working in a dev vm correctly but I have been unable to get working when the server is running in openshift. Here is the shortened code which works for me in a vm. from autobahn.twisted.websocket import WebSocketServerProtocol, WebSocketServerFactory, listenWS from autobahn.twisted.resource import WebSocketResource class MyServerProtocol(WebSocketServerProtocol): def onConnect(self, request): stuff... def onOpen(self): stuff...