Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Committed-by: siyuanzhang.zsy from Dev container
  • Loading branch information
siyuan0322 committed Jul 5, 2023
1 parent eac83ee commit 7646211
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ impl GaiaServer {
}

pub fn add_partition(&mut self, partition_id: PartitionId, graph_partition: Arc<GraphStore>) {
println!("add_partition");
trace!("add_partition");
Arc::get_mut(&mut self.graph)
.unwrap()
.add_partition(partition_id, graph_partition);
}

pub fn update_partition_routing(&mut self, partition_id: PartitionId, worker_id: u32) {
println!("update_partition_routing");
trace!("update_partition_routing");
Arc::get_mut(&mut self.graph)
.unwrap()
.update_partition_routing(partition_id, worker_id);
Expand Down Expand Up @@ -115,7 +115,7 @@ impl GaiaServer {
}

pub fn update_peer_view(&self, peer_view: Vec<(u64, ServerAddr)>) {
println!("update_peer_view");
trace!("update_peer_view");
self.detector
.update_peer_view(peer_view.into_iter());
}
Expand Down

0 comments on commit 7646211

Please sign in to comment.