From 3b74efda6f0e026ecb6118151454577d6f9ca3d4 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Sat, 10 May 2025 22:33:49 -0600 Subject: [PATCH] a --- run_unified_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_unified_api.py b/run_unified_api.py index cc6ed04..9cd8c93 100644 --- a/run_unified_api.py +++ b/run_unified_api.py @@ -36,7 +36,7 @@ def run_unified_api(): try: processes = [] - for bind_host in ["0.0.0.0", "::"]: + for bind_host in ["127.0.0.1", "::1"]: p = multiprocessing.Process(target=run_uvicorn, args=(bind_host,)) p.start() processes.append(p)