potiuk commented on code in PR #45699:
URL: https://github.com/apache/airflow/pull/45699#discussion_r1919165430
##########
dev/breeze/src/airflow_breeze/params/shell_params.py:
##########
@@ -597,7 +596,7 @@ def env_variables_for_docker_commands(self) -> dict[str,
str]:
_set_var(_env, "SKIP_SSH_SETUP", self.skip_ssh_setup)
_set_var(_env, "SQLITE_URL", self.sqlite_url)
_set_var(_env, "SSH_PORT", None, SSH_PORT)
- _set_var(_env, "STANDALONE_DAG_PROCESSOR",
self.standalone_dag_processor)
+ _set_var(_env, "STANDALONE_DAG_PROCESSOR", "true")
Review Comment:
I think we need to make it conditional - when `--use-airflow-version` is set
to < 2.10.* we probably don't want to run with standalone dag processor or at
least give a chance to disable it. Possibly better solution will be to change
`--use-standalone-dag-processor` to two way flag
`--use-standalone-dag-processor/--no-use-standalone-dag-processor` and default
it to `True`
--
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]