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 2021/03/03 09:32:28 UTC

[airflow] 04/41: Fix breeze redirect on macOS (#14506)

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

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

commit 3c39b5d446bbc6974a7b655163240de7017f33ca
Author: Vladimir Mikhaylov <38...@users.noreply.github.com>
AuthorDate: Sat Feb 27 17:15:49 2021 +0300

    Fix breeze redirect on macOS (#14506)
    
    (cherry picked from commit f9cc775adc0dff49b0e288d8f2745bf097017321)
---
 breeze | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/breeze b/breeze
index 124ed85..bc63046 100755
--- a/breeze
+++ b/breeze
@@ -24,7 +24,9 @@ AIRFLOW_SOURCES="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
 if [[ ${BREEZE_REDIRECT=} == "" ]]; then
     mkdir -p "${AIRFLOW_SOURCES}"/logs
     export BREEZE_REDIRECT="true"
+    set +u
     "${0}" "${@}" 2>&1 | tee "${AIRFLOW_SOURCES}"/logs/breeze.out
+    set -u
     exit
 fi