Skip to content

Commit 9e34163

Browse files
authored
Make collator RPC mode non-experimental (#2381)
The `--relay-chain-rpc-urls` CLI flag has been available for a while now. We have collators with this running and parachain teams are also using it. It should be fine now to remove the experimental status.
1 parent 0385902 commit 9e34163

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

cumulus/client/cli/src/lib.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,14 @@ pub struct RunCmd {
296296
#[arg(long, conflicts_with = "validator")]
297297
pub collator: bool,
298298

299-
/// EXPERIMENTAL: Specify an URL to a relay chain full node to communicate with.
299+
/// Creates a less resource-hungry node that retrieves relay chain data from an RPC endpoint.
300+
///
301+
/// The provided URLs should point to RPC endpoints of the relay chain.
302+
/// This node connects to the remote nodes following the order they were specified in. If the
303+
/// connection fails, it attempts to connect to the next endpoint in the list.
304+
///
305+
/// Note: This option doesn't stop the node from connecting to the relay chain network but
306+
/// reduces bandwidth use.
300307
#[arg(
301308
long,
302309
value_parser = validate_relay_chain_url,

0 commit comments

Comments
 (0)