This commit is contained in:
Slipstream 2025-05-10 22:33:49 -06:00
parent 372dccc484
commit 3b74efda6f
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -36,7 +36,7 @@ def run_unified_api():
try: try:
processes = [] 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 = multiprocessing.Process(target=run_uvicorn, args=(bind_host,))
p.start() p.start()
processes.append(p) processes.append(p)