cli: fix casing for warning of preferred_seeds

While the field name will `preferred_seeds` in Rust, the casing for
the JSON file is `preferredSeeds`.
This commit is contained in:
Fintan Halpenny 2026-01-28 10:17:28 +00:00
parent 15adb16135
commit c33c26fa78
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ $ rad debug
}, },
"warnings": [ "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 `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 $ 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 `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. Node is stopped.
To start it, run `rad node start`. To start it, run `rad node start`.
``` ```

View File

@ -39,7 +39,7 @@ fn nodes_renamed_for_option(
pub(crate) fn nodes_renamed(config: &Config) -> Vec<String> { pub(crate) fn nodes_renamed(config: &Config) -> Vec<String> {
let mut warnings = nodes_renamed_for_option("node.connect", config.node.connect.clone()); let mut warnings = nodes_renamed_for_option("node.connect", config.node.connect.clone());
warnings.extend(nodes_renamed_for_option( warnings.extend(nodes_renamed_for_option(
"preferred_seeds", "preferredSeeds",
config.preferred_seeds.clone(), config.preferred_seeds.clone(),
)); ));
warnings warnings