From c33c26fa78bc80d8bdaf2919f5aed9f36afac0f1 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 28 Jan 2026 10:17:28 +0000 Subject: [PATCH] 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`. --- crates/radicle-cli/examples/rad-warn-old-nodes.md | 6 +++--- crates/radicle-cli/src/warning.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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