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/07/18 11:20:26 UTC

[airflow] 09/29: Breeze should work with new docker-compose fallback (#16743)

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

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

commit 811f516da3390bc52b8d43674eabf02073990c1b
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Thu Jul 1 16:34:31 2021 +0200

    Breeze should work with new docker-compose fallback (#16743)
    
    The new Docker Desktop beta brings new docker v2 implementation
    with docker-compose being a docker command. It also provides fallback
    to docker-compose command but adding --log-level messes up
    the alias it uses. The --log-level INFO command was superfluous
    and we can get rid of it.
    
    (cherry picked from commit 258691ac448087c89d015680387822bc3c1e47e9)
---
 breeze | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/breeze b/breeze
index 173e619..9a352fd 100755
--- a/breeze
+++ b/breeze
@@ -637,7 +637,7 @@ export SQLITE_URL="${SQLITE_URL}"
 export USE_AIRFLOW_VERSION="${USE_AIRFLOW_VERSION}"
 export USE_PACKAGES_FROM_DIST="${USE_PACKAGES_FROM_DIST}"
 export EXECUTOR="${EXECUTOR}"
-docker-compose --log-level INFO ${command}
+docker-compose ${command}
 EOF
     chmod u+x "${file}"
 }