From 2b8f779b6561fef3887906176b222bd827e547d5 Mon Sep 17 00:00:00 2001 From: Tim O'Farrell Date: Mon, 22 Dec 2025 10:04:10 -0700 Subject: [PATCH] fix: Runtime pods fail to start due to missing Playwright browser path (#12130) --- enterprise/server/saas_nested_conversation_manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enterprise/server/saas_nested_conversation_manager.py b/enterprise/server/saas_nested_conversation_manager.py index d92e67b9ff..59c6d4e981 100644 --- a/enterprise/server/saas_nested_conversation_manager.py +++ b/enterprise/server/saas_nested_conversation_manager.py @@ -804,6 +804,8 @@ class SaasNestedConversationManager(ConversationManager): env_vars['ENABLE_V1'] = '0' env_vars['SU_TO_USER'] = SU_TO_USER env_vars['DISABLE_VSCODE_PLUGIN'] = str(DISABLE_VSCODE_PLUGIN).lower() + env_vars['BROWSERGYM_DOWNLOAD_DIR'] = '/workspace/.downloads/' + env_vars['PLAYWRIGHT_BROWSERS_PATH'] = '/opt/playwright-browsers' # We need this for LLM traces tracking to identify the source of the LLM calls env_vars['WEB_HOST'] = WEB_HOST