sushi30 commented on issue #19385:
URL: https://github.com/apache/airflow/issues/19385#issuecomment-959730914


   As a workaround. Using this config and **deleting** the DAG allows it to 
continue running:
   ```python
   def create_subdag(dag):
       with DAG(dag_id=f"{dag.dag_id}.subdag", start_date=days_ago(0), 
schedule_interval="@once", catchup=False) as dag:
           DummyOperator(task_id="task")
       return dag
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to