Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #105 from thehyve/fix-luigi-taks-order
Browse files Browse the repository at this point in the history
Fix order of subtasks for main data loading task.
  • Loading branch information
ewelinagr authored May 11, 2022
2 parents 82dfb28 + 909fa15 commit 61e7d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luigi-pipeline/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def _build_task_dependency_tree(self):
yield commit_input_data

sources_to_csr_task = Sources2CsrTransformation()
sources_to_csr_task.required_tasks = [update_data_files]
sources_to_csr_task.required_tasks = [commit_input_data]
yield sources_to_csr_task

csr_to_transmart_task = TransmartDataTransformation()
Expand Down

0 comments on commit 61e7d2d

Please sign in to comment.