File tree Expand file tree Collapse file tree
quickwit/quickwit-cli/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ use quickwit_cli::service::RunCliCommand;
2424use quickwit_common:: net:: find_available_tcp_port;
2525use quickwit_common:: test_utils:: wait_for_server_ready;
2626use quickwit_common:: uri:: Uri ;
27- use quickwit_config:: service:: QuickwitService ;
2827use quickwit_metastore:: { IndexMetadata , IndexMetadataResponseExt , MetastoreResolver } ;
2928use quickwit_proto:: metastore:: { IndexMetadataRequest , MetastoreService , MetastoreServiceClient } ;
3029use quickwit_proto:: types:: IndexId ;
@@ -155,9 +154,12 @@ impl TestEnv {
155154 }
156155
157156 pub async fn start_server ( & self ) -> anyhow:: Result < ( ) > {
157+ // Use the default all-in-one service set, which excludes the standalone compactor.
158+ // `QuickwitService::supported_services()` includes the compactor and would make this
159+ // config invalid unless `enable_standalone_compactors` was explicitly enabled.
158160 let run_command = RunCliCommand {
159161 config_uri : self . resource_files . config . clone ( ) ,
160- services : Some ( QuickwitService :: supported_services ( ) ) ,
162+ services : None ,
161163 } ;
162164 let server_handle = tokio:: spawn ( async move {
163165 if let Err ( error) = run_command
You can’t perform that action at this time.
0 commit comments