Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TerryYin1777 committed Mar 6, 2024
1 parent e462fe8 commit 4691191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dagfactory/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Module contains the version of dag-factory"""
__version__ = "0.17.1.post11"
__version__ = "0.17.1.post12"
2 changes: 1 addition & 1 deletion dagfactory/dagbuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ def build(self) -> Dict[str, Union[str, DAG]]:
if dag_class.__name__ == "PelotonDepDag":
dag_kwargs["depend_on_dags"] = dag_params.get("depend_on_dags", None)
dag_kwargs["wait_on_dags"] = dag_params.get("wait_on_dags", None)
dag_kwargs["depend_on_tasks"] = dag_params.get("depends_on_tasks", None)
dag_kwargs["depend_on_tasks"] = dag_params.get("depend_on_tasks", None)
dag_kwargs["wait_on_tasks"] = dag_params.get("wait_on_tasks", None)
dag_kwargs["alert_on_start"] = dag_params.get("alert_on_start", None)
dag_kwargs["alert_on_finish"] = dag_params.get("alert_on_finish", None)
Expand Down

0 comments on commit 4691191

Please sign in to comment.