QAQyy
Results
1
issues of
QAQyy
目前好像不管有多少个websocket的请求都会在下面这段代码里阻塞 while True: try: tts_results = next(wav_generator) resp = {"status": 1, "audio": tts_results} await websocket.send_json(resp) except StopIteration as e: resp = {"status": 2, "audio": ''} await websocket.send_json(resp) logger.info( "Complete the...
Question