Skip to content

Commit

Permalink
Update devlopment nns_url
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbattat committed Jan 16, 2025
1 parent 51f818e commit f1596d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ic-os/setupos/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ def _custom_partitions(mode):
if mode == "dev":
guest_image = Label("//ic-os/guestos/envs/dev:disk-img.tar.zst")
host_image = Label("//ic-os/hostos/envs/dev:disk-img.tar.zst")
nns_url = "https://wiki.internetcomputer.org"
nns_url = "https://cloudflare.com/cdn-cgi/trace"
elif mode == "local-base-dev":
guest_image = Label("//ic-os/guestos/envs/local-base-dev:disk-img.tar.zst")
host_image = Label("//ic-os/hostos/envs/local-base-dev:disk-img.tar.zst")
nns_url = "https://wiki.internetcomputer.org"
nns_url = "https://cloudflare.com/cdn-cgi/trace"
elif mode == "local-base-prod":
guest_image = Label("//ic-os/guestos/envs/local-base-prod:disk-img.tar.zst")
host_image = Label("//ic-os/hostos/envs/local-base-prod:disk-img.tar.zst")
Expand Down
2 changes: 1 addition & 1 deletion rs/ic_os/config/src/generate_testnet_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ fn create_guestos_config(config: GenerateTestnetConfigArgs) -> Result<GuestOSCon
.iter()
.map(|s| Url::parse(s))
.collect::<Result<Vec<Url>, _>>()?,
None => vec![Url::parse("https://wiki.internetcomputer.org")?],
None => vec![Url::parse("https://cloudflare.com/cdn-cgi/trace")?],
};

let use_node_operator_private_key = use_node_operator_private_key.unwrap_or(false);
Expand Down

0 comments on commit f1596d8

Please sign in to comment.