From 8c9bf89e3ac58a7f01107b1da4af649b2c24df05 Mon Sep 17 00:00:00 2001 From: Tristan Huet Date: Wed, 18 Feb 2026 15:38:14 +0100 Subject: [PATCH 1/2] fix: fix wrong method name in instance generator ETL --- code/run_templates/etl_instance_generator/etl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/run_templates/etl_instance_generator/etl.py b/code/run_templates/etl_instance_generator/etl.py index f2d64ff..92da5d0 100644 --- a/code/run_templates/etl_instance_generator/etl.py +++ b/code/run_templates/etl_instance_generator/etl.py @@ -72,8 +72,8 @@ def main(): path_tmp_dir / "Customer.csv", ] path_list_db = [path_tmp_dir / "Bar.csv"] - DatasetApi().update_dataset_parts( - target_dataset_id, path_list_file, path_list_db, replace=True + DatasetApi().upload_dataset_parts( + target_dataset_id, path_list_file, path_list_db, replace_existing=True ) LOGGER.info("ETL Run finished") From 023ad28defb33f1219317079b2d09997f404a41d Mon Sep 17 00:00:00 2001 From: Tristan Huet Date: Wed, 18 Feb 2026 17:15:25 +0100 Subject: [PATCH 2/2] docs: update list of registries in README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c347f0..5d81a9c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ csm-orc run code/run_templates/minimal/run.json ## Deploy -Publish a new simulator image to both registries used by Sphinx: +Publish the new simulator image to the desired registries: ``` az login @@ -43,4 +43,7 @@ csm docker release --tag x.y.z --registry acrwarpwaadxdevdlrivo.azurecr.io/ az acr login -n acrsphinxd38ygr csm docker release --tag x.y.z --registry acrsphinxd38ygr.azurecr.io/ + +az acr login -n devregistryvela +csm docker release --tag x.y.z --registry devregistryvela.azurecr.io/ ```