Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: fix casing for warning of preferred_seeds
✗ CI failure Fintan Halpenny committed 3 months ago
commit c33c26fa78bc80d8bdaf2919f5aed9f36afac0f1
parent 15adb161357262f9287d1b90fffda55f6c2611c0
1 failed (1 total) View logs
2 files changed +4 -4
modified 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
+
```
modified crates/radicle-cli/src/warning.rs
@@ -39,7 +39,7 @@ fn nodes_renamed_for_option(
pub(crate) fn nodes_renamed(config: &Config) -> Vec<String> {
    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