Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/
```
4 changes: 2 additions & 2 deletions code/run_templates/etl_instance_generator/etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down