Skip to content

Commit

Permalink
ETLPipelies view - update can_fail for last tapis job task dependency…
Browse files Browse the repository at this point in the history
… on update-inbound-manifest task
  • Loading branch information
nathandf committed Nov 9, 2023
1 parent c827d06 commit efa79d3
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 @@ -239,7 +239,7 @@ def post(self, request, group_id, *_, **__):
# 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(
TaskDependency(id=last_task_id)
TaskDependency(id=last_task_id, can_fail=True)
)
except ValidationError as e:
return BadRequest(str(e))
Expand Down

0 comments on commit efa79d3

Please sign in to comment.