uranusjr commented on code in PR #28711:
URL: https://github.com/apache/airflow/pull/28711#discussion_r1061146864
##########
airflow/jobs/scheduler_job.py:
##########
@@ -151,6 +151,7 @@ def __init__(
# How many seconds do we wait for tasks to heartbeat before mark them
as zombies.
self._zombie_threshold_secs = conf.getint("scheduler",
"scheduler_zombie_task_threshold")
self._standalone_dag_processor = conf.getboolean("scheduler",
"standalone_dag_processor")
+ self._is_dag_processor_activated = conf.getint("scheduler",
"dag_dir_list_interval") >= 0
Review Comment:
What happens if I set `standalone_dag_processor` to True and
`dag_dir_list_interval` to a minus value? Does it cause the standalone
processor to run idly, or?
--
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]