{"record":{"id":"3f866891c7d28448","repo":"openai/codex","slug":"invalidinput-3f8668","errorCode":"InvalidInput","errorMessage":"sandboxed filesystem operations require configured runtime paths","messagePattern":"sandboxed filesystem operations require configured runtime paths","errorType":"exception","errorClass":"io::Error","httpStatus":null,"severity":"error","filePath":"codex-rs/exec-server/src/local_file_system.rs","lineNumber":88,"sourceCode":"\nimpl LocalFileSystem {\n    pub fn unsandboxed() -> Self {\n        Self {\n            unsandboxed: UnsandboxedFileSystem::default(),\n            sandboxed: None,\n        }\n    }\n\n    pub fn with_runtime_paths(runtime_paths: ExecServerRuntimePaths) -> Self {\n        Self {\n            unsandboxed: UnsandboxedFileSystem::default(),\n            sandboxed: Some(SandboxedFileSystem::new(runtime_paths)),\n        }\n    }\n\n    fn sandboxed(&self) -> io::Result<&SandboxedFileSystem> {\n        self.sandboxed.as_ref().ok_or_else(|| {\n            io::Error::new(\n                io::ErrorKind::InvalidInput,\n                \"sandboxed filesystem operations require configured runtime paths\",\n            )\n        })\n    }\n\n    fn file_system_for<'a>(\n        &'a self,\n        sandbox: Option<&'a FileSystemSandboxContext>,\n    ) -> io::Result<(\n        &'a dyn ExecutorFileSystem,\n        Option<&'a FileSystemSandboxContext>,\n    )> {\n        if sandbox.is_some_and(FileSystemSandboxContext::should_run_in_sandbox) {\n            Ok((self.sandboxed()?, sandbox))\n        } else {\n            Ok((&self.unsandboxed, sandbox))\n        }","sourceCodeStart":70,"sourceCodeEnd":106,"githubUrl":"https://github.com/openai/codex/blob/339751715c64496cb86246bfb3935f40e309dd3d/codex-rs/exec-server/src/local_file_system.rs#L70-L106","documentation":"Error \"sandboxed filesystem operations require configured runtime paths\" thrown in openai/codex.","triggerScenarios":"Thrown at codex-rs/exec-server/src/local_file_system.rs:88 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Configure the runtime paths required for sandboxed filesystem operations."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"339751715c64496cb86246bfb3935f40e309dd3d","analyzedAt":"2026-08-25T05:35:09.876Z","schemaVersion":2},"datasetVersion":"2026-08-25T06:17:31.827Z"}