You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/10/18 15:08:42 UTC

[airflow] 07/13: Fix params reference for default_constraints_branch (#26406)

This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-4-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit d190ea79730b6ccaddf8f13387ba858c07fad355
Author: Gabriel Machado <ga...@hotmail.com>
AuthorDate: Wed Sep 14 23:56:14 2022 +0200

    Fix params reference for default_constraints_branch (#26406)
    
    Fixes breeze commands that depends on the default constraints branch,
    such as the generated diff for
    `breeze release-management generate-constraints`
    
    (cherry picked from commit e458eb689d70e4857cdc3cdaaaafd4bfdbcc8ed7)
---
 dev/breeze/src/airflow_breeze/utils/docker_command_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 f276051008..868499611a 100644
--- a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
+++ b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
@@ -610,7 +610,7 @@ DERIVE_ENV_VARIABLES_FROM_ATTRIBUTES = {
     "AIRFLOW_CI_IMAGE": "airflow_image_name",
     "AIRFLOW_CI_IMAGE_WITH_TAG": "airflow_image_name_with_tag",
     "AIRFLOW_EXTRAS": "airflow_extras",
-    "DEFAULT_CONSTRAINTS_BRANCH": "default-constraints-branch",
+    "DEFAULT_CONSTRAINTS_BRANCH": "default_constraints_branch",
     "AIRFLOW_CONSTRAINTS_MODE": "airflow_constraints_mode",
     "AIRFLOW_CONSTRAINTS_REFERENCE": "airflow_constraints_reference",
     "AIRFLOW_IMAGE_KUBERNETES": "airflow_image_kubernetes",