Skip to content

Commit

Permalink
feat(staging): Make staging deployment less dependent on factsdb
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic committed Jan 4, 2024
1 parent 8febdea commit 1afebd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rs/cli/src/ic_admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl IcAdminWrapper {
// But since ic-admin expects these commands to include the "get-" prefix, we
// need to add it back Example:
// `release_cli get subnet 0` becomes
// `ic-admin --nns-url "http://[2600:3004:1200:1200:5000:62ff:fedc:fe3c]:8080" get-subnet 0`
// `ic-admin --nns-url "http://[2600:3000:6100:200:5000:b0ff:fe8e:6b7b]:8080" get-subnet 0`
let mut args_with_get_prefix = vec![String::from("get-") + args[0].as_str()];
args_with_get_prefix.extend_from_slice(args.split_at(1).1);
args_with_get_prefix
Expand Down
2 changes: 1 addition & 1 deletion rs/ic-management-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ impl Network {
match self {
Network::Mainnet => Url::from_str("https://ic0.app").unwrap(),
// Workaround for staging boundary node not working properly (503 Service unavailable)
Network::Staging => Url::from_str("https://[2600:3004:1200:1200:5000:62ff:fedc:fe3c]:8080").unwrap(),
Network::Staging => Url::from_str("https://[2600:3000:6100:200:5000:b0ff:fe8e:6b7b]:8080").unwrap(),
Self::Url(url) => url.clone(),
}
}
Expand Down

0 comments on commit 1afebd8

Please sign in to comment.