From 5b61b030a44edbfd778029ef4449975d1521b295 Mon Sep 17 00:00:00 2001 From: houseme Date: Wed, 22 Jul 2026 00:34:22 +0800 Subject: [PATCH] fix(tier): narrow mutation proof targets (#5098) Co-authored-by: heihutu --- crates/ecstore/src/services/tier/tier.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ecstore/src/services/tier/tier.rs b/crates/ecstore/src/services/tier/tier.rs index 38a4267a9..ab5f82381 100644 --- a/crates/ecstore/src/services/tier/tier.rs +++ b/crates/ecstore/src/services/tier/tier.rs @@ -506,7 +506,7 @@ fn tier_mutation_proof_targets( current: &TierConfigMgr, candidate: &TierConfigMgr, ) -> HashSet { - let mut targets = changed_tier_names(current, candidate); + let mut targets = HashSet::new(); match kind { TierMutationIntentKind::Add | TierMutationIntentKind::Edit | TierMutationIntentKind::Remove => { if let Some(tier_name) = explicit_tier_name