yuseok89 commented on code in PR #68678:
URL: https://github.com/apache/airflow/pull/68678#discussion_r3433596905


##########
airflow-core/src/airflow/dag_processing/collection.py:
##########
@@ -557,7 +579,25 @@ def find_orm_dags(self, *, session: Session) -> dict[str, 
DagModel]:
         )
         return {dm.dag_id: dm for dm in session.scalars(stmt).unique()}
 
+    def find_dag_id_collisions(self, *, session: Session) -> dict[str, 
AirflowDagDuplicatedIdException]:
+        """Find Dag IDs already used by a different active DAG file."""

Review Comment:
   ```suggestion
           """Find Dag IDs already used by a different active Dag file."""
   ```
   
   nit: "DAG file" -> "Dag file" to match the title-case convention used 
elsewhere



-- 
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]

Reply via email to