Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved instructions for adding dependencies in TaskFlow #35406

Merged
merged 1 commit into from Nov 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/apache-airflow/tutorial/taskflow.rst
Expand Up @@ -465,7 +465,8 @@ In the above code block, a new TaskFlow function is defined as ``extract_from_fi
reads the data from a known file location.
In the main DAG, a new ``FileSensor`` task is defined to check for this file. Please note
that this is a Sensor task which waits for the file.
Finally, a dependency between this Sensor task and the TaskFlow function is specified.
The TaskFlow function call is put in a variable ``order_data``.
Finally, a dependency between this Sensor task and the TaskFlow function is specified using the variable.


Consuming XComs between decorated and traditional tasks
Expand Down