diff --git a/hive-matrix-mcp/src/main.rs b/hive-matrix-mcp/src/main.rs index e15d0983..12d23bee 100644 --- a/hive-matrix-mcp/src/main.rs +++ b/hive-matrix-mcp/src/main.rs @@ -195,7 +195,10 @@ async fn bring_up_secondary_with_retry( ) -> Option<(Client, SyncLoop)> { // Permanent failure: the token was invalid/expired and has already been // removed from disk. Retrying won't help — skip immediately. - if first_error.downcast_ref::().is_some() { + if first_error + .downcast_ref::() + .is_some() + { tracing::error!( account = %cfg.name, error = %format!("{first_error:#}"),