Add experimental exec server URL handling (#15196)

Add a config and attempt to start the server.
This commit is contained in:
pakrym-oai
2026-03-19 18:25:11 +00:00
committed by GitHub
parent 267499bed8
commit 1837038f4e
7 changed files with 126 additions and 6 deletions
+3 -1
View File
@@ -1826,7 +1826,9 @@ impl Session {
code_mode_service: crate::tools::code_mode::CodeModeService::new(
config.js_repl_node_path.clone(),
),
environment: Arc::new(Environment),
environment: Arc::new(
Environment::create(config.experimental_exec_server_url.clone()).await?,
),
};
let js_repl = Arc::new(JsReplHandle::with_node_path(
config.js_repl_node_path.clone(),