You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/11/01 13:16:21 UTC

[GitHub] [airflow] jasonoberme commented on issue #18894: Migrate from 2.1.4 to 2.2.0

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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org