fmt: apply rustfmt across the P2 arc
CI's rustfmt check flagged the multi-line sqlx::query() calls I introduced in P2 (loop_id_for_run, zeroclaw_gateway_url, etc.). No behavior change — pure formatting.
This commit is contained in:
@@ -113,11 +113,9 @@ async fn run_job(
|
||||
per_topic_url
|
||||
} else {
|
||||
match cm_db::repo::topology_runs::loop_id_for_run(pool, id).await {
|
||||
Ok(Some(loop_id)) => {
|
||||
cm_db::repo::loops::zeroclaw_gateway_url(pool, loop_id)
|
||||
.await
|
||||
.unwrap_or(None)
|
||||
}
|
||||
Ok(Some(loop_id)) => cm_db::repo::loops::zeroclaw_gateway_url(pool, loop_id)
|
||||
.await
|
||||
.unwrap_or(None),
|
||||
_ => None,
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user