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

kaxilnaik pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new c8cca0b328e [v3-0-test] Do not use outdated schedule_interval in 
tutorial dags (#50947) (#50954)
c8cca0b328e is described below

commit c8cca0b328e7ce9083291173e039235a07c9bf29
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri May 23 01:18:44 2025 +0530

    [v3-0-test] Do not use outdated schedule_interval in tutorial dags (#50947) 
(#50954)
    
    (cherry picked from commit 5796536e0f57e600fc636258e316240774efc9a2)
    
    Co-authored-by: Amogh Desai <[email protected]>
---
 airflow-core/docs/tutorial/taskflow.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/docs/tutorial/taskflow.rst 
b/airflow-core/docs/tutorial/taskflow.rst
index fcb32fc09e0..baf6f7e04af 100644
--- a/airflow-core/docs/tutorial/taskflow.rst
+++ b/airflow-core/docs/tutorial/taskflow.rst
@@ -160,7 +160,7 @@ Here's what the same DAG might have looked like using the 
traditional approach:
 
    with DAG(
        dag_id="legacy_etl_pipeline",
-       schedule_interval=None,
+       schedule=None,
        start_date=pendulum.datetime(2021, 1, 1, tz="UTC"),
        catchup=False,
        tags=["example"],

Reply via email to