huskies: merge 768

This commit is contained in:
dave
2026-04-28 10:06:18 +00:00
parent fb5a21cfbb
commit 0c2789b2c1
11 changed files with 13 additions and 209 deletions
-2
View File
@@ -197,7 +197,6 @@ pub async fn run(
// open supplementary mesh connections for resilience.
{
let sync_handler = poem::get(crate::crdt_sync::crdt_sync_handler);
let health_handler = poem::get(crate::http::health::health);
// Build a minimal AppContext for the crdt_sync_handler (the handler
// receives it via Data<> but doesn't use it — the underscore prefix
@@ -207,7 +206,6 @@ pub async fn run(
let app = poem::Route::new()
.at("/crdt-sync", sync_handler)
.at("/health", health_handler)
.data(agent_ctx_arc);
let bind_addr = format!("0.0.0.0:{port}");