chore: cargo fmt --all — clean up a2a merge's fmt violations
ci / gates (push) Successful in 7s
ci / rust (push) Failing after 49s
ci / frontend (push) Successful in 52s
ci / e2e (push) Has been skipped
ci / publish (push) Successful in 3m6s

The a2a merge (d0d8e7f) landed with a handful of pre-existing rustfmt
diffs that were failing `cargo fmt --all --check` in CI. Pure whitespace
reformatting from `cargo fmt --all`; no semantic changes. Files touched:
mcp_door.rs, quota.rs, routes/a2a.rs, routes/world.rs, runtime_provision.rs,
chat_repos.rs test, and tools/chat.rs.
This commit is contained in:
Omar Sobh
2026-07-05 18:54:15 -07:00
parent 812bc29db6
commit ebb5b5780b
7 changed files with 103 additions and 39 deletions
+1 -4
View File
@@ -182,10 +182,7 @@ fn normalize_run_event(
}
"a2a_invoked" => {
// An external A2A caller started a turn on this agent (a new ingress).
out.push((
"a2a.invoked",
json!({ "agentId": agent_id }),
));
out.push(("a2a.invoked", json!({ "agentId": agent_id })));
}
_ => {}
}