This bug was caused by query_parameters being updated in place. If school_year was set to true for any DAG, this parameter remained in the argument and cascaded into all subsequent DAGs. To resolve this, the contents of query_parameters has been deep-copied before being set in the endpoint configs.
…t desynchronization across DAG runs.
This bug was caused by
query_parameters
being updated in place. Ifschool_year
was set to true for any DAG, this parameter remained in the argument and cascaded into all subsequent DAGs. To resolve this, the contents ofquery_parameters
has been deep-copied before being set in the endpoint configs.