mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
fix: Dependency vs dependents (#1462)
* fix: Dependency vs dependents * chore: Remove the debugging
This commit is contained in:
@@ -102,7 +102,7 @@ pub async fn check<Db: DbHandle>(
|
||||
let receipts = crate::dependencies::BreakTransitiveReceipts::new(&mut tx).await?;
|
||||
tracing::debug!("Got receipts {}", id);
|
||||
|
||||
for (dependent, info) in &*current_dependents {
|
||||
for (dependent, info) in (*current_dependents).0.iter() {
|
||||
let failures: BTreeMap<HealthCheckId, HealthCheckResult> = health_results
|
||||
.iter()
|
||||
.filter(|(_, hc_res)| !matches!(hc_res, HealthCheckResult::Success { .. }))
|
||||
|
||||
Reference in New Issue
Block a user