Skip to content

Commit

Permalink
Addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan Kumar committed Jan 6, 2025
1 parent 6b6d3db commit 231bf04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/libs/core/src/runtime/stateful_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ use crate::{
strings::WStringWrap,
sync::{fabric_begin_end_proxy2, CancellationToken},
types::{
HealthInformation, FaultType, LoadMetric, LoadMetricListRef, MoveCost,
ReplicaRole, ServicePartitionAccessStatus, ServicePartitionInformation,
FaultType, HealthInformation, LoadMetric, LoadMetricListRef, MoveCost, ReplicaRole,
ServicePartitionAccessStatus, ServicePartitionInformation,
},
};

Expand Down Expand Up @@ -389,7 +389,7 @@ impl StatefulServicePartition {
/// Reports health on the current stateful service replica of the partition.
pub fn report_replica_health(&self, healthinfo: &HealthInformation) -> crate::Result<()> {
let healthinfo_ref = &healthinfo.into();
unsafe {self.com_impl.ReportReplicaHealth(healthinfo_ref)}
unsafe { self.com_impl.ReportReplicaHealth(healthinfo_ref) }
}
}

Expand Down

0 comments on commit 231bf04

Please sign in to comment.