mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 05:24:02 +00:00
fix
This commit is contained in:
parent
95985e7bbb
commit
657d443a3e
@ -12,7 +12,16 @@ from open_webui.utils.utils import decode_token
|
|||||||
|
|
||||||
if WEBSOCKET_MANAGER == "redis":
|
if WEBSOCKET_MANAGER == "redis":
|
||||||
mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL)
|
mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL)
|
||||||
sio = socketio.AsyncServer(client_manager=mgr)
|
sio = socketio.AsyncServer(
|
||||||
|
cors_allowed_origins=[],
|
||||||
|
async_mode="asgi",
|
||||||
|
transports=(
|
||||||
|
["polling", "websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]
|
||||||
|
),
|
||||||
|
allow_upgrades=ENABLE_WEBSOCKET_SUPPORT,
|
||||||
|
always_connect=True,
|
||||||
|
client_manager=mgr,
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
sio = socketio.AsyncServer(
|
sio = socketio.AsyncServer(
|
||||||
cors_allowed_origins=[],
|
cors_allowed_origins=[],
|
||||||
|
Loading…
Reference in New Issue
Block a user