The variable in airflow is already created as per the instructions of the Exercise 1.
Hello @Ammaro,
It seems I could reproduce you issue, at the last part in Exercise 4 when you declare depedencies you nee to make sure that you use the task names, not the method names e.g. change start_task()
to start_task
, end_task()
to end_task
etc. Hope it helps:
Thank you so much @Georgios , it works now!. Now I get it, I should use parentheses when declaring the dependencies for a dag only when using the task decorator, otherwise I shouldn’t.
1 Like