Skip to content

Commit

Permalink
update name of task to 'update-inbound-manifest'
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Nov 9, 2023
1 parent efa79d3 commit 8dee7c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/src/backend/views/ETLPipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@ def post(self, request, group_id, *_, **__):
# Add the tasks from the template to the tasks list
tasks.extend([TemplateTask(**task) for task in pipeline_template.get("tasks")])

# Update the dependecies of the update-inbound-manifests task to
# Update the dependecies of the update-inbound-manifest task to
# include the last tapis job task
update_inbound_manifests_task = next(filter(lambda t: t.id == "update-inbound-manifests", tasks))
update_inbound_manifests_task.depends_on.append(
update_inbound_manifest_task = next(filter(lambda t: t.id == "update-inbound-manifest", tasks))
update_inbound_manifest_task.depends_on.append(
TaskDependency(id=last_task_id, can_fail=True)
)
except ValidationError as e:
Expand Down

0 comments on commit 8dee7c1

Please sign in to comment.