ephraimbuddy commented on code in PR #66484:
URL: https://github.com/apache/airflow/pull/66484#discussion_r3225634884


##########
airflow-core/src/airflow/dag_processing/manager.py:
##########
@@ -1261,11 +1268,14 @@ def _add_new_files_to_queue(self, known_files: 
dict[str, set[DagFileInfo]]):
         A "new" file is a file that has not been processed yet and is not 
currently being processed.
         """
         new_files = []
+        tracked_presence_keys = {file.presence_key for file in 
self._file_queue}
+        tracked_presence_keys.update(file.presence_key for file in 
self._file_stats)
+        tracked_presence_keys.update(file.presence_key for file in 
self._processors)
         for files in known_files.values():
             for file in files:
-                # todo: store stats by bundle also?

Review Comment:
   This todo is still applicable, No?



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