From e9ac6658432fd8820b646c0423cc4ac1fc460ff3 Mon Sep 17 00:00:00 2001 From: pedrohsdb Date: Wed, 26 Nov 2025 15:32:23 -0800 Subject: [PATCH] remove skip screenshot annotations experiment (#4113) --- skyvern/forge/sdk/routes/streaming/messages.py | 2 +- skyvern/forge/sdk/routes/streaming/vnc.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/skyvern/forge/sdk/routes/streaming/messages.py b/skyvern/forge/sdk/routes/streaming/messages.py index 7b145749..db99d7bb 100644 --- a/skyvern/forge/sdk/routes/streaming/messages.py +++ b/skyvern/forge/sdk/routes/streaming/messages.py @@ -112,7 +112,7 @@ async def messages( return if not result: - LOG.warning( + LOG.error( "No message channel found.", 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..de5e229f 100644 --- a/skyvern/forge/sdk/routes/streaming/vnc.py +++ b/skyvern/forge/sdk/routes/streaming/vnc.py @@ -104,7 +104,7 @@ async def stream( ) if not result: - LOG.warning( + LOG.error( "No vnc context found for the browser session.", browser_session_id=browser_session_id, organization_id=organization_id, @@ -128,7 +128,7 @@ async def stream( ) if not result: - LOG.warning("No vnc context found for the task.", task_id=task_id, organization_id=organization_id) + LOG.error("No vnc context found for the task.", task_id=task_id, organization_id=organization_id) await websocket.close(code=1013) return @@ -146,7 +146,7 @@ async def stream( ) if not result: - LOG.warning( + LOG.error( "No vnc context found for the workflow run.", workflow_run_id=workflow_run_id, organization_id=organization_id,