From 4dcc8ed725d744d2542f31fad347e907151faf0d Mon Sep 17 00:00:00 2001 From: Stanislav Novosad Date: Wed, 26 Nov 2025 18:59:53 -0700 Subject: [PATCH] Warn 'Authentication failed' (#4117) --- skyvern/forge/sdk/routes/streaming/messages.py | 2 +- skyvern/forge/sdk/routes/streaming/vnc.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skyvern/forge/sdk/routes/streaming/messages.py b/skyvern/forge/sdk/routes/streaming/messages.py index 7b145749..74b5295d 100644 --- a/skyvern/forge/sdk/routes/streaming/messages.py +++ b/skyvern/forge/sdk/routes/streaming/messages.py @@ -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, diff --git a/skyvern/forge/sdk/routes/streaming/vnc.py b/skyvern/forge/sdk/routes/streaming/vnc.py index a90153e2..6bf076d7 100644 --- a/skyvern/forge/sdk/routes/streaming/vnc.py +++ b/skyvern/forge/sdk/routes/streaming/vnc.py @@ -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