From bac32644c2dffb281a8871aee00198c5dfdf6047 Mon Sep 17 00:00:00 2001 From: Duncan Date: Mon, 10 Aug 2026 12:13:46 -0400 Subject: [PATCH] fix(acp): add permission_decision_tx: None to main's new test TaskMeta inits Three test-only TaskMeta initializers added by main (#5423 steer-delivery tests) came in via the merge without permission_decision_tx, breaking cargo test -p buzz-acp compilation. Production init sites were correctly resolved in the merge commit; these three cfg(test) sites were outside the conflict hunks and were missed. Co-authored-by: Will Pfleger Signed-off-by: Will Pfleger --- crates/buzz-acp/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/buzz-acp/src/lib.rs b/crates/buzz-acp/src/lib.rs index 921ca4c7c..632690fc5 100644 --- a/crates/buzz-acp/src/lib.rs +++ b/crates/buzz-acp/src/lib.rs @@ -6712,6 +6712,7 @@ mod error_outcome_emission_tests { recoverable_batch: None, control_tx: None, steer_tx: None, + permission_decision_tx: None, successful_steer_deliveries: HashSet::from([ crate::pool::SuccessfulSteerDelivery { event_id: steer_event_id.into(), @@ -6784,6 +6785,7 @@ mod error_outcome_emission_tests { recoverable_batch: None, control_tx: None, steer_tx: None, + permission_decision_tx: None, successful_steer_deliveries: HashSet::from([ crate::pool::SuccessfulSteerDelivery { event_id: "stale-event".into(), @@ -6899,6 +6901,7 @@ mod error_outcome_emission_tests { recoverable_batch: None, control_tx: None, steer_tx: None, + permission_decision_tx: None, successful_steer_deliveries: HashSet::from([ crate::pool::SuccessfulSteerDelivery { event_id: "stale-event".into(),