fix: clear stale health notifications

This commit is contained in:
Dorian
2026-05-14 08:57:54 -04:00
parent f95e9a1cd0
commit b8053c00ca
3 changed files with 38 additions and 5 deletions
+3 -1
View File
@@ -65,7 +65,9 @@ pub async fn ensure_doctor_installed() {
Err(e) => warn!("Nginx bootstrap failed (non-fatal): {:#}", e),
}
match run_bitcoin_rpc_repair().await {
Ok(true) => info!("Repaired Bitcoin RPC bind settings; running Bitcoin containers left untouched"),
Ok(true) => {
info!("Repaired Bitcoin RPC bind settings; running Bitcoin containers left untouched")
}
Ok(false) => debug!("Bitcoin RPC bind settings already usable"),
Err(e) => warn!("Bitcoin RPC repair failed (non-fatal): {:#}", e),
}