Skip to content

Commit

Permalink
etl pipeline tapis job id replace _ with -
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jan 2, 2024
1 parent 5887c91 commit 2633fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/src/backend/views/ETLPipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def post(self, request, group_id, *_, **__):
if i == 1:
conditions.append(no_op_condition)

task_id = f"etl-job-{i}"
task_id = f"etl_job_{i}"
tapis_job_task = TapisJobTask(**{
"id": task_id,
"type": "tapis_job",
Expand Down

0 comments on commit 2633fd8

Please sign in to comment.