Skip to content

Commit

Permalink
fix(dashboard): Show DC in the node label/name (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic committed May 22, 2024
1 parent a99cdb7 commit f48e685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/ic-management-backend/src/node_labels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub async fn query_guests(network: &String) -> anyhow::Result<Vec<Guest>> {
Guest {
datacenter: dc.to_string(),
ipv6: ip.parse().unwrap(),
name: label.to_string(),
name: format!("{}-{}", dc, label),
dfinity_owned: DFINITY_DCS.contains(dc),
decentralized: true,
}
Expand Down

0 comments on commit f48e685

Please sign in to comment.