mirror of
https://github.com/open-webui/open-webui
synced 2024-11-17 05:53:11 +00:00
feat(sqlalchemy): cleanup fixes
This commit is contained in:
parent
070d9083d5
commit
320e658595
@ -24,9 +24,7 @@ async def connect(sid, environ, auth):
|
|||||||
data = decode_token(auth["token"])
|
data = decode_token(auth["token"])
|
||||||
|
|
||||||
if data is not None and "id" in data:
|
if data is not None and "id" in data:
|
||||||
from apps.webui.internal.db import SessionLocal
|
user = Users.get_user_by_id(data["id"])
|
||||||
|
|
||||||
user = Users.get_user_by_id(SessionLocal(), data["id"])
|
|
||||||
|
|
||||||
if user:
|
if user:
|
||||||
SESSION_POOL[sid] = user.id
|
SESSION_POOL[sid] = user.id
|
||||||
|
@ -751,7 +751,6 @@ class PipelineMiddleware(BaseHTTPMiddleware):
|
|||||||
user = get_current_user(
|
user = get_current_user(
|
||||||
request,
|
request,
|
||||||
get_http_authorization_cred(request.headers.get("Authorization")),
|
get_http_authorization_cred(request.headers.get("Authorization")),
|
||||||
SessionLocal(),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user