{"record":{"id":"c086b4add1eeca45","repo":"openai/codex","slug":"interrupted","errorCode":"Interrupted","errorMessage":"filesystem walk cancelled","messagePattern":"filesystem walk cancelled","errorType":"exception","errorClass":"io::Error","httpStatus":null,"severity":"error","filePath":"codex-rs/exec-server/src/local_file_system.rs","lineNumber":1057,"sourceCode":"        &'a self,\n        source_path: &'a PathUri,\n        destination_path: &'a PathUri,\n        options: CopyOptions,\n        sandbox: Option<&'a FileSystemSandboxContext>,\n    ) -> ExecutorFileSystemFuture<'a, ()> {\n        Box::pin(DirectFileSystem::copy(\n            self,\n            source_path,\n            destination_path,\n            options,\n            sandbox,\n        ))\n    }\n}\n\nfn check_walk_cancelled(cancelled: &CancellationToken) -> io::Result<()> {\n    if cancelled.is_cancelled() {\n        return Err(io::Error::new(\n            io::ErrorKind::Interrupted,\n            \"filesystem walk cancelled\",\n        ));\n    }\n    Ok(())\n}\n\nfn walk_metadata(path: &PathUri) -> io::Result<(std::fs::Metadata, bool)> {\n    let path = path.to_abs_path()?;\n    let metadata = std::fs::symlink_metadata(path.as_path())?;\n    let is_symlink = metadata.is_symlink();\n    let metadata = if is_symlink {\n        std::fs::metadata(path.as_path())?\n    } else {\n        metadata\n    };\n    Ok((metadata, is_symlink))\n}","sourceCodeStart":1039,"sourceCodeEnd":1075,"githubUrl":"https://github.com/openai/codex/blob/339751715c64496cb86246bfb3935f40e309dd3d/codex-rs/exec-server/src/local_file_system.rs#L1039-L1075","documentation":"Error \"filesystem walk cancelled\" thrown in openai/codex.","triggerScenarios":"Thrown at codex-rs/exec-server/src/local_file_system.rs:1057 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Retry the filesystem walk; it was cancelled before completion."],"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"}