Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dre): Remove unnecessary Arc::clone #547

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions rs/cli/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl Runner {
}

// Create a new registry state
let new_registry = Arc::new(registry::RegistryState::new(&self.network, true).await);
let mut new_registry = Arc::new(registry::RegistryState::new(&self.network, true).await);

// Fetch node providers
let node_providers = query_ic_dashboard_list::<NodeProvidersResponse>(&self.network, "v3/node-providers")
Expand All @@ -89,8 +89,8 @@ impl Runner {
.node_providers;

// Update node details
Arc::get_mut(&mut Arc::clone(&new_registry))
.expect("Failed to get mutable reference")
Arc::get_mut(&mut new_registry)
.expect("Failed to get mutable reference to new registry")
.update_node_details(&node_providers)
.await
.expect("Failed to update node details");
Expand Down
Loading