From 5d126f98b2b1702f7e26f438c1912d13f1832a90 Mon Sep 17 00:00:00 2001 From: YSC-hain <58895782+YSC-hain@users.noreply.github.com> Date: Fri, 18 Oct 2024 11:40:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E7=9B=91=E5=90=AC=E5=8F=8C=E6=A0=88=20(#1621)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在调用时使用 -a None 参数,可以让 api 监听双栈 --- api_v2.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api_v2.py b/api_v2.py index ea1d0c7..92a18f3 100644 --- a/api_v2.py +++ b/api_v2.py @@ -451,6 +451,8 @@ async def set_sovits_weights(weights_path: str = None): if __name__ == "__main__": try: + if host == 'None': # 在调用时使用 -a None 参数,可以让api监听双栈 + host = None uvicorn.run(app=APP, host=host, port=port, workers=1) except Exception as e: traceback.print_exc()