ashb commented on code in PR #44972:
URL: https://github.com/apache/airflow/pull/44972#discussion_r1888381098
##########
airflow/dag_processing/manager.py:
##########
@@ -280,7 +274,16 @@ def end(self):
self._parent_signal_conn.close()
-class DagFileProcessorManager(LoggingMixin):
+def _config_int_factory(section: str, key: str):
+ return functools.partial(conf.getint, section, key)
+
+
+def _config_bool_factory(section: str, key: str):
+ return functools.partial(conf.getboolean, section, key)
+
+
[email protected]
+class DagFileProcessorManager:
Review Comment:
```suggestion
class DagFileProcessorSupervisor:
```
and let's rename the file appropriately.
--
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]