in flask-socketio, is it possible to force the transport to be only web socket?
According to the original protocol:
https://github.com/socketio/engine.io
transports (<Array> String): transports to allow connections to (['polling', 'websocket'])
My goal would be to get rid of the original HTTP call.
Best,