fmt: phase_runner inject_node_agents
ci / gates (push) Successful in 6s
ci / frontend (push) Successful in 26s
ci / rust (push) Successful in 4m25s
ci / e2e (push) Skipped
ci / publish (push) Successful in 4m12s

This commit is contained in:
Omar Sobh
2026-07-23 09:56:50 -07:00
parent 3b243588b8
commit 6d60691f5a
+4 -6
View File
@@ -366,12 +366,10 @@ async fn inject_node_agents(
team_id: Uuid, team_id: Uuid,
graph: serde_json::Value, graph: serde_json::Value,
) -> serde_json::Value { ) -> serde_json::Value {
let members = match sqlx::query( let members = match sqlx::query("SELECT node_id, claw_id FROM team_members WHERE team_id = $1")
"SELECT node_id, claw_id FROM team_members WHERE team_id = $1", .bind(team_id)
) .fetch_all(pool)
.bind(team_id) .await
.fetch_all(pool)
.await
{ {
Ok(rows) => rows, Ok(rows) => rows,
Err(e) => { Err(e) => {