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

Commit

Permalink
Fix order of subtasks for main data loading task.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewelinagr committed May 11, 2022
1 parent 82dfb28 commit 909fa15
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 909fa15

Please sign in to comment.