codex: fix CI failure on PR #22712

This commit is contained in:
starr-openai
2026-05-14 15:39:24 -07:00
parent dc58274566
commit 5bdfdd351a

View File

@@ -218,7 +218,9 @@ impl ExecutorFileSystem for InMemoryFileSystem {
reject_sandbox_context(sandbox)?;
let state = self.state.read().expect("in-memory fs read lock");
if is_root(path) {
return Ok(directory_metadata(0, 0));
return Ok(directory_metadata(
/*created_at_ms*/ 0, /*modified_at_ms*/ 0,
));
}
let entry = state.entries.get(path).ok_or_else(|| {