From 8d2ebcf51f9dca600cd5af5d7cf7a265774f7bb8 Mon Sep 17 00:00:00 2001 From: atlas Date: Thu, 9 Jul 2026 00:40:54 +0200 Subject: [PATCH] fix(clippy): wrap PermanentBringUpError in backticks in doc comment (main.rs:59) --- hive-matrix-mcp/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-matrix-mcp/src/main.rs b/hive-matrix-mcp/src/main.rs index 12d23bee..a6af4a57 100644 --- a/hive-matrix-mcp/src/main.rs +++ b/hive-matrix-mcp/src/main.rs @@ -56,7 +56,7 @@ const ACCOUNTS_HEARTBEAT_SECS: u64 = 30; /// Retry delays (seconds) for transient secondary-account failures. /// After the initial attempt we back off through these before giving up /// and skipping the account for the rest of the daemon lifetime. -/// Transient = anything that is NOT a PermanentBringUpError (bad/expired +/// Transient = anything that is NOT a `PermanentBringUpError` (bad/expired /// token). A down homeserver at DNS-not-ready boot time is the typical /// case; the total wait is ~52s before we give up. const SECONDARY_RETRY_DELAYS_SECS: &[u64] = &[2, 5, 15, 30];