jedcunningham commented on PR #37339:
URL: https://github.com/apache/airflow/pull/37339#issuecomment-1949380418
Yeah, 2 -> 1 is definitely a bug and doesn't make sense. But that only
impacts dags with a single dot in it right now. For example, if my dag_id was
`somedag.withadot`, you'd get this:
```
airflow_dagrun_dependency_check{dag_id="somedag",quantile="0.5"}
0.004515170999999999
...
```
But dags without a dot at all aren't rewritten:
```
airflow_dagrun_dependency_check_task_group_example{quantile="0.5"}
0.002308188
...
```
With this change, however, they would be, which is a breaking change:
```
airflow_dagrun_dependency_check{dag_id="task_group_example",quantile="0.5"}
0.003433467
...
```
--
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]