Skip to content

Commit

Permalink
dag_test
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir2217 committed Dec 7, 2024
1 parent 9f56a82 commit b3e8035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/roger/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def create_python_task(dag, name, a_callable, func_kwargs=None, external_repos =
:param name: The name of the task.
:param a_callable: The code to run in this task.
"""
return PythonOperator(task_id="print_the_context_2", python_callable=a_callable)
return PythonOperator(task_id=name, python_callable=a_callable)
# these are actual arguments passed down to the task function
op_kwargs = {
"python_callable": a_callable,
Expand Down

0 comments on commit b3e8035

Please sign in to comment.