Skip to content

Commit

Permalink
feat(ic-management-backend): adding all known staging nns nodes as de…
Browse files Browse the repository at this point in the history
…faults (#420)
  • Loading branch information
NikolaMilosa authored May 24, 2024
1 parent 9794789 commit ab104f2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion rs/ic-management-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,17 @@ impl Network {
"staging" => (
"staging".to_string(),
if nns_urls.is_empty() {
vec![Url::from_str("http://[2600:3000:6100:200:5000:b0ff:fe8e:6b7b]:8080").unwrap()]
[
"http://[2600:2c01:21:0:5000:d7ff:fe63:6512]:8080/",
"http://[2600:2c01:21:0:5000:beff:fecb:ff53]:8080/",
"http://[2600:3000:6100:200:5000:14ff:fecd:3307]:8080/",
"http://[2600:3000:6100:200:5000:47ff:fee3:1779]:8080/",
"http://[2604:7e00:50:0:5000:a2ff:fed7:e98c]:8080/",
"http://[2600:3000:6100:200:5000:b0ff:fe8e:6b7b]:8080/",
]
.iter()
.map(|s| Url::from_str(s).unwrap())
.collect()
} else {
nns_urls.clone()
},
Expand Down

0 comments on commit ab104f2

Please sign in to comment.