ephraimbuddy opened a new pull request, #68336:
URL: https://github.com/apache/airflow/pull/68336
When a DAG bundle advances to a new version/commit but the DAG's serialized
content is byte-identical, write_dag took the 'unchanged' fast path and left
the latest DagVersion's bundle_version pinned to the old commit. Tasks resolve
their code from ti.dag_version.bundle_version at run time, so new runs and
reruns 'with the latest bundle version' executed an outdated commit.
Refresh the latest version's bundle_version/version_data (and dag code) in
place instead. This does not create a new DagVersion, avoiding version
inflation on every bundle commit, while keeping the recorded bundle pointer
current.
closes: #67657
--
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]