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 <[email protected]> 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}" }
