Skip to content

Commit e671049

Browse files
chore: auto-fix cargo fmt + clippy
1 parent f1eab56 commit e671049

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

src/main.rs

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)