You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/03/30 02:11:24 UTC

[GitHub] [airflow] jedcunningham commented on a change in pull request #22305: Add dag-processor cli command

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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org