github-actions[bot] opened a new pull request, #71937: URL: https://github.com/apache/airflow/pull/71937
delete_asset_queued_events and delete_dag_asset_queued_event forced SQLAlchemy's "fetch" synchronize_session strategy on their AssetDagRunQueue deletes. That strategy reads the primary key of every deleted row back from the database to update the ORM session's identity map, but neither endpoint loads any AssetDagRunQueue objects into the session beforehand, so the read-back keys are matched against an empty map and discarded. The sibling delete_dag_asset_queued_events endpoint already used the default "auto" strategy; the other two now match it. (cherry picked from commit 49c5d519b0e50e153da9310a91083ccab0f137af) Co-authored-by: Jyun-An Chen <[email protected]> -- 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]
