diff --git a/rustfs/src/cluster_snapshot.rs b/rustfs/src/cluster_snapshot.rs index 0cae00cf5..718060b09 100644 --- a/rustfs/src/cluster_snapshot.rs +++ b/rustfs/src/cluster_snapshot.rs @@ -181,7 +181,8 @@ mod tests { snapshot.runtime_status.degraded_reasons, vec![ReadinessDegradedReason::StorageAndLockUnavailable] ); - assert_eq!(snapshot.peer_health.peers[0].status.state, CapabilityState::Unknown); + // Local node (peers[0]) is supported — no peer health probing needed. + assert_eq!(snapshot.peer_health.peers[0].status.state, CapabilityState::Supported); if cfg!(target_os = "linux") { assert_eq!(snapshot.observability.platform.numa.state, CapabilityState::Unknown); } else {