diff --git a/cli/src/commands/start.rs b/cli/src/commands/start.rs index d341ba3c..f270cf6e 100644 --- a/cli/src/commands/start.rs +++ b/cli/src/commands/start.rs @@ -162,8 +162,8 @@ pub async fn start( None => "-- --graphql".to_string(), }, StartSubcommands::All { port } => match port { - Some(port) => format!("-- --port={port}"), - None => "".to_string(), + Some(port) => format!("-- --graphql --indexer --port={port}"), + None => "-- --graphql --indexer".to_string(), }, }) .status() diff --git a/documentation/docs/pages/docs/changelog.mdx b/documentation/docs/pages/docs/changelog.mdx index 5aa5ebb0..87a2eb29 100644 --- a/documentation/docs/pages/docs/changelog.mdx +++ b/documentation/docs/pages/docs/changelog.mdx @@ -10,6 +10,8 @@ ### Bug fixes ------------------------------------------------- +- fix: add missing --graphql and --indexer flags for 'rindexer start all + ### Breaking changes -------------------------------------------------