codex: fix CI failure on PR #13681

Handle the new rollout response metadata event in exhaustive matches outside core so downstream crates keep compiling.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Charles Cunningham
2026-03-05 21:43:29 -08:00
parent bb05429f8d
commit 71033e034c
4 changed files with 5 additions and 0 deletions

View File

@@ -848,6 +848,7 @@ impl EventProcessor for EventProcessorWithHumanOutput {
| EventMsg::ListRemoteSkillsResponse(_)
| EventMsg::RemoteSkillDownloaded(_)
| EventMsg::RawResponseItem(_)
| EventMsg::ResponseMetadata(_)
| EventMsg::UserMessage(_)
| EventMsg::EnteredReviewMode(_)
| EventMsg::ExitedReviewMode(_)
@@ -929,6 +930,7 @@ impl EventProcessorWithHumanOutput {
| EventMsg::ListRemoteSkillsResponse(_)
| EventMsg::RemoteSkillDownloaded(_)
| EventMsg::RawResponseItem(_)
| EventMsg::ResponseMetadata(_)
| EventMsg::UserMessage(_)
| EventMsg::EnteredReviewMode(_)
| EventMsg::ExitedReviewMode(_)

View File

@@ -789,6 +789,7 @@ fn should_suppress_agent_job_event(msg: &EventMsg) -> bool {
| EventMsg::RequestUserInput(_)
| EventMsg::DynamicToolCallRequest(_)
| EventMsg::DynamicToolCallResponse(_)
| EventMsg::ResponseMetadata(_)
| EventMsg::ElicitationRequest(_)
| EventMsg::Error(_)
| EventMsg::Warning(_)

View File

@@ -355,6 +355,7 @@ async fn run_codex_tool_session_inner(
| EventMsg::ImageGenerationBegin(_)
| EventMsg::ImageGenerationEnd(_)
| EventMsg::RawResponseItem(_)
| EventMsg::ResponseMetadata(_)
| EventMsg::EnteredReviewMode(_)
| EventMsg::ItemStarted(_)
| EventMsg::ItemCompleted(_)

View File

@@ -4830,6 +4830,7 @@ impl ChatWidget {
}
}
EventMsg::RawResponseItem(_)
| EventMsg::ResponseMetadata(_)
| EventMsg::ItemStarted(_)
| EventMsg::AgentMessageContentDelta(_)
| EventMsg::ReasoningContentDelta(_)