I am using socket io and flask application.Everthing works except I always get this message. This is my initialization:
app = Flask(__name__)
app.config['SECRET_KEY'] = APP_SECRET_KEY
jwt = JWTManager(app)
cors = CORS(app)
app.config['CORS_HEADERS'] = 'Content-Type'
# app.config['transports'] = 'websocket'
socketio = SocketIO(app, cors_allowed_origins="*", async_mode='threading')
socketio.run(app, debug=True)
What may cause this warning and what does it mean?
- tried already to install gevent and eventlet and it didn't remove the message