doowhtron commented on issue #13504:
URL: https://github.com/apache/airflow/issues/13504#issuecomment-759853201
I temporarily fix this by catching SerializedDagNotFound Exception in
scheduler_job.py
```python
from airflow.exceptions import SerializedDagNotFound
for dag_run in dag_runs:
try:
self._schedule_dag_run(dag_run,
active_runs_by_dag_id.get(dag_run.dag_id, set()), session)
except SerializedDagNotFound as e:
self.log.exception(e)
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]