diff --git a/core/src/common/state.rs b/core/src/common/state.rs index 1dc9ac29854..d4dd0c9b3e7 100644 --- a/core/src/common/state.rs +++ b/core/src/common/state.rs @@ -48,12 +48,12 @@ use crate::{ /// A `Live` variant for [`State`] #[derive(Debug, Clone, clap::Args)] pub struct LiveState { - /// The url(s) to connect to. Can be provided multiple times for parallel state download. + /// The url(s) to connect to. Can be comma-separated (no spaces) for parallel download. #[arg( short, long, value_parser = parse::url, - num_args = 1.., + value_delimiter = ',', required = true, )] pub uri: Vec,