codex: avoid reading sandbox type back from remote start

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-04-07 15:09:36 -07:00
parent e1556d4393
commit 4e90a1a891

View File

@@ -649,12 +649,12 @@ impl UnifiedExecProcessManager {
params: codex_exec_server::ExecParams,
environment: &codex_exec_server::Environment,
) -> Result<UnifiedExecProcess, UnifiedExecError> {
let sandbox_type = params.sandbox.sandbox;
let started = environment
.get_exec_backend()
.start(params)
.await
.map_err(|err| UnifiedExecError::create_process(err.to_string()))?;
let sandbox_type = started.sandbox_type;
UnifiedExecProcess::from_remote_started(started, sandbox_type).await
}