This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-3-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 6923cf3b95cbe0e320ec7da133bb721443d2b0cc Author: Jarek Potiuk <[email protected]> AuthorDate: Sat May 7 08:26:04 2022 +0200 Fix accidental including of providers in airflow package (#23552) The change #23454 accidentally remove INSTALL_PROVIDERS_FROM_SOURCES setting to "false" which resulted in airflow package containing all providers. This has been caught by our tests (but it was only visible after merging) This PR brings the variable back. (cherry picked from commit 29ec8d0a06f0f548083bc4f31d0bfe61286a3342) --- dev/breeze/src/airflow_breeze/utils/docker_command_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py index 52539cefd3..069c0a3c9d 100644 --- a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py +++ b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py @@ -506,6 +506,7 @@ DERIVE_ENV_VARIABLES_FROM_ATTRIBUTES = { "ENABLED_INTEGRATIONS": "enabled_integrations", "GITHUB_ACTIONS": "github_actions", "INSTALL_AIRFLOW_VERSION": "install_airflow_version", + "INSTALL_PROVIDERS_FROM_SOURCES": "install_providers_from_sources", "ISSUE_ID": "issue_id", "LOAD_EXAMPLES": "load_example_dags", "LOAD_DEFAULT_CONNECTIONS": "load_default_connections",
