Merge pull request #12883 from Classic298/patch-1

fix: UVICORN_WORKERS __init__.py pass application as string
This commit is contained in:
Tim Jaeryang Baek 2025-04-17 22:07:21 -07:00 committed by GitHub
commit 30e84adb51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,7 +76,7 @@ def serve(
from open_webui.env import UVICORN_WORKERS # Import the workers setting
uvicorn.run(
open_webui.main.app,
"open_webui.main:app",
host=host,
port=port,
forwarded_allow_ips="*",