Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 706 Bytes

File metadata and controls

6 lines (4 loc) · 706 Bytes

STATUS: FIXED (verified 2026-06-07) — the two sites below now use Arc::new(agent).run(). A third, undocumented site (ic/tests/e2e_telegram_message_routing.rs:231) had the same bug and was blocking the entire test suite from compiling; it has been wrapped too, so cargo test compiles again.

  1. tests/support/gateway_workflow_harness.rs:295
  2. tests/support/test_rig.rs:818
  • Both call agent.run() on a plain Agent, but Agent::run() now takes self: Arc. The fix is wrapping with Arc::new(agent).run() as the compiler suggests. This is the same class of issue as the engine tests — the test support code wasn't updated after a production refactor. Not related to the version bump.