This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 29ec8d0a06 Fix accidental including of providers in airflow package
(#23552)
29ec8d0a06 is described below
commit 29ec8d0a06f0f548083bc4f31d0bfe61286a3342
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.
---
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",