Document guardian feedback upload special case

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Charles Cunningham
2026-03-19 15:31:01 -07:00
parent 03c95508fb
commit 216e80e32e

View File

@@ -7075,6 +7075,9 @@ impl CodexMessageProcessor {
};
let mut attachment_paths = validated_rollout_path.into_iter().collect::<Vec<_>>();
if include_logs && let Some(conversation_id) = conversation_id {
// `codex-feedback` already cascades rollout attachments for ordinary non-ephemeral
// ThreadSpawn descendants. Guardian uses a hidden reviewer session instead, so its
// persistent trunk rollout is not reachable through that descendant graph.
match self.thread_manager.get_thread(conversation_id).await {
Ok(thread) => {
if let Some(path) = thread.guardian_trunk_rollout_path().await