jedcunningham commented on a change in pull request #22305:
URL: https://github.com/apache/airflow/pull/22305#discussion_r838050912



##########
File path: airflow/dag_processing/manager.py
##########
@@ -239,13 +239,13 @@ def _run_processor_manager(
         airflow.settings.initialize()
         del os.environ['CONFIG_PROCESSOR_MANAGER_LOGGER']
         processor_manager = DagFileProcessorManager(
-            dag_directory,
-            max_runs,
-            processor_timeout,
-            signal_conn,
-            dag_ids,
-            pickle_dags,
-            async_mode,
+            dag_directory=dag_directory,
+            max_runs=max_runs,
+            processor_timeout=processor_timeout,
+            signal_conn=signal_conn,
+            dag_ids=dag_ids,
+            pickle_dags=pickle_dags,

Review comment:
       ```suggestion
               dag_ids=dag_ids,
               pickle_dags=pickle_dags,
               signal_conn=signal_conn,
   ```
   
   Might as well reorder here as well, 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