This is an automated email from the ASF dual-hosted git repository.

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new d9e7c42cdc Fix typo in example inlet events DAG (#39909)
d9e7c42cdc is described below

commit d9e7c42cdc9b5adc49b5d9729501c7092a45a932
Author: Tzu-ping Chung <[email protected]>
AuthorDate: Wed May 29 03:04:21 2024 -0400

    Fix typo in example inlet events DAG (#39909)
---
 airflow/example_dags/example_inlet_event_extra.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/example_dags/example_inlet_event_extra.py 
b/airflow/example_dags/example_inlet_event_extra.py
index 5271458a1f..471a215532 100644
--- a/airflow/example_dags/example_inlet_event_extra.py
+++ b/airflow/example_dags/example_inlet_event_extra.py
@@ -56,6 +56,6 @@ with DAG(
 ):
     BashOperator(
         task_id="read_dataset_event_from_classic",
-        outlets=[ds],
+        inlets=[ds],
         bash_command="echo {{ inlet_events['s3://output/1.txt'][-1].extra }}",
     )

Reply via email to