mirror of
https://github.com/openai/codex.git
synced 2026-08-29 14:09:35 +00:00
## Why Multi-agent exec sessions can receive child `turn/completed` notifications on the same event stream as the primary turn. Backfilling those unrelated completions issues unnecessary `thread/read` requests. ## What changed Run completion-item backfill only after a notification has been matched to the primary exec thread and turn. ## Testing Add an integration test that delivers a child completion before the primary completion and verifies that only the primary completion triggers backfill. GitOrigin-RevId: 46a41236ee6a39e4b341570ff4826a71fa02bb32
18 lines
362 B
Rust
18 lines
362 B
Rust
// Aggregates all former standalone integration tests as modules.
|
|
mod add_dir;
|
|
mod agents_md;
|
|
mod apply_patch;
|
|
mod approval_policy;
|
|
mod auth_env;
|
|
#[path = "completion_backfill_tests.rs"]
|
|
mod completion_backfill;
|
|
mod ephemeral;
|
|
mod hooks;
|
|
mod mcp_required_exit;
|
|
mod originator;
|
|
mod output_schema;
|
|
mod prompt_stdin;
|
|
mod resume;
|
|
mod sandbox;
|
|
mod server_error_exit;
|