jasonoberme commented on issue #18894: URL: https://github.com/apache/airflow/issues/18894#issuecomment-956225094
For anyone experiencing this when testing standlone and using SQLite, delete these ids: ``` select fail_id from ( (select id as fail_id,dag_id,execution_date from task_fail ) as fail left join ( select dag_id,execution_date from dag_run ) as run on run.dag_id=fail.dag_id and fail.execution_date=run.execution_date ) where run.dag_id is null ``` -- 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]
