Warn 'Authentication failed' (#4117)

This commit is contained in:
Stanislav Novosad
2025-11-26 18:59:53 -07:00
committed by GitHub
parent 82b1045897
commit 4dcc8ed725
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ async def messages(
organization_id = await auth(apikey=apikey, token=token, websocket=websocket)
if not organization_id:
LOG.error(
LOG.warning(
"Authentication failed.",
browser_session_id=browser_session_id,
workflow_run_id=workflow_run_id,

View File

@@ -89,7 +89,7 @@ async def stream(
organization_id = await auth(apikey=apikey, token=token, websocket=websocket)
if not organization_id:
LOG.error("Authentication failed.", task_id=task_id, workflow_run_id=workflow_run_id)
LOG.warning("Authentication failed.", task_id=task_id, workflow_run_id=workflow_run_id)
return
vnc_channel: VncChannel