diff --git a/crates/radicle-cli/examples/rad-warn-old-nodes.md b/crates/radicle-cli/examples/rad-warn-old-nodes.md index 1adef0ba..bbee052a 100644 --- a/crates/radicle-cli/examples/rad-warn-old-nodes.md +++ b/crates/radicle-cli/examples/rad-warn-old-nodes.md @@ -39,7 +39,7 @@ $ rad debug }, "warnings": [ "Value of configuration option `node.connect` at index 0 mentions node with address 'ash.radicle.garden:8776', which has been renamed to 'rosa.radicle.xyz:8776'. Please update your configuration.", - "Value of configuration option `preferred_seeds` at index 0 mentions node with address 'seed.radicle.garden:8776', which has been renamed to 'iris.radicle.xyz:8776'. Please update your configuration." + "Value of configuration option `preferredSeeds` at index 0 mentions node with address 'seed.radicle.garden:8776', which has been renamed to 'iris.radicle.xyz:8776'. Please update your configuration." ] } ``` @@ -49,7 +49,7 @@ Also, `rad node status` will warn us: ``` $ rad node status ! Warning: Value of configuration option `node.connect` at index 0 mentions node with address 'ash.radicle.garden:8776', which has been renamed to 'rosa.radicle.xyz:8776'. Please update your configuration. -! Warning: Value of configuration option `preferred_seeds` at index 0 mentions node with address 'seed.radicle.garden:8776', which has been renamed to 'iris.radicle.xyz:8776'. Please update your configuration. +! Warning: Value of configuration option `preferredSeeds` at index 0 mentions node with address 'seed.radicle.garden:8776', which has been renamed to 'iris.radicle.xyz:8776'. Please update your configuration. Node is stopped. To start it, run `rad node start`. -``` \ No newline at end of file +``` diff --git a/crates/radicle-cli/src/warning.rs b/crates/radicle-cli/src/warning.rs index 926794dd..431053b6 100644 --- a/crates/radicle-cli/src/warning.rs +++ b/crates/radicle-cli/src/warning.rs @@ -39,7 +39,7 @@ fn nodes_renamed_for_option( pub(crate) fn nodes_renamed(config: &Config) -> Vec { let mut warnings = nodes_renamed_for_option("node.connect", config.node.connect.clone()); warnings.extend(nodes_renamed_for_option( - "preferred_seeds", + "preferredSeeds", config.preferred_seeds.clone(), )); warnings