How to push tasks regularly? i try it like this but client tips packet queue is empty, aborting
sio = socketio.Server(cors_allowed_origins="*")
app = socketio.WSGIApp(sio, static_files={'/': {'content_type': 'text/html', 'filename': 'index.html'}})
def check_wait_reply():
sio.emit('message', 123123)
keyer = Timer(10, check_wait_reply)
keyer.start()
if __name__ == '__main__':
check_wait_reply()
eventlet.wsgi.server(eventlet.listen(('', 3000)), app)