File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -117,10 +117,16 @@ async fn main() -> anyhow::Result<()> {
117117 // --- Setup the system adapter (target already has initial data) ---
118118 let run_id = Uuid :: new_v4 ( ) ;
119119 let datasets = pipeline. setup_request_datasets ( ) ;
120- let setup_metadata = std:: collections:: HashMap :: from ( [ (
121- "executor_instance_type" . to_string ( ) ,
122- serde_json:: Value :: String ( cli. common . executor_instance_type . clone ( ) ) ,
123- ) , ( "table_format" . to_string ( ) , serde_json:: Value :: String ( cli. common . table_format . to_string ( ) ) ) ] ) ;
120+ let setup_metadata = std:: collections:: HashMap :: from ( [
121+ (
122+ "executor_instance_type" . to_string ( ) ,
123+ serde_json:: Value :: String ( cli. common . executor_instance_type . clone ( ) ) ,
124+ ) ,
125+ (
126+ "table_format" . to_string ( ) ,
127+ serde_json:: Value :: String ( cli. common . table_format . to_string ( ) ) ,
128+ ) ,
129+ ] ) ;
124130
125131 if let Err ( e) = system_adapter_client
126132 . setup ( run_id, datasets, setup_metadata)
You can’t perform that action at this time.
0 commit comments