You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/06/04 09:44:50 UTC

[airflow] branch master updated: Fix INTEGRATIONS[*]: unbound variable error in breeze (#9135)

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

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 1fe804a  Fix INTEGRATIONS[*]: unbound variable error in breeze (#9135)
1fe804a is described below

commit 1fe804a30ad69619ed24f9a5f32c2e67fadbc717
Author: Tomek Urbaszek <tu...@gmail.com>
AuthorDate: Thu Jun 4 11:44:26 2020 +0200

    Fix INTEGRATIONS[*]: unbound variable error in breeze (#9135)
---
 breeze | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/breeze b/breeze
index dc38a31..74f0801 100755
--- a/breeze
+++ b/breeze
@@ -422,7 +422,7 @@ EOF
 
 EOF
         fi
-
+        set +u
         if [[ ${INTEGRATIONS[*]} == *"kubernetes"* ]]; then
             cat <<EOF
 
@@ -433,6 +433,7 @@ EOF
    Cluster operation:   ${KIND_CLUSTER_OPERATION}
 EOF
         fi
+        set -u
     fi
 }