This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new c72adf407df Fix a couple comments (#44623)
c72adf407df is described below
commit c72adf407df51d72b0da74d1396c27845cd4e39a
Author: D. Ferruzzi <[email protected]>
AuthorDate: Tue Dec 3 22:04:00 2024 -0800
Fix a couple comments (#44623)
---
airflow/dag_processing/processor.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow/dag_processing/processor.py
b/airflow/dag_processing/processor.py
index 4c451adf00c..840c17300f5 100644
--- a/airflow/dag_processing/processor.py
+++ b/airflow/dag_processing/processor.py
@@ -112,7 +112,7 @@ class DagFileProcessorProcess(LoggingMixin,
MultiprocessingStartMethodMixin):
self._dag_directory = dag_directory
self._callback_requests = callback_requests
- # The process that was launched to process the given .
+ # The process that was launched to process the given DAG file.
self._process: multiprocessing.process.BaseProcess | None = None
# The result of DagFileProcessor.process_file(file_path).
self._result: tuple[int, int, int] | None = None
@@ -120,7 +120,7 @@ class DagFileProcessorProcess(LoggingMixin,
MultiprocessingStartMethodMixin):
self._done = False
# When the process started.
self._start_time: datetime | None = None
- # This ID is use to uniquely name the process / thread that's launched
+ # This ID is used to uniquely name the process / thread that's launched
# by this processor instance
self._instance_id = DagFileProcessorProcess.class_creation_counter