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 7a32866 The fix_ownership works independently of backend choice
(#9664)
7a32866 is described below
commit 7a328660b965790d6ed910c597486698523870c6
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Jul 5 21:44:29 2020 +0200
The fix_ownership works independently of backend choice (#9664)
The script failed on a "clean" installation if the image
required cleaning and the database was not started.
---
scripts/ci/ci_fix_ownership.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/scripts/ci/ci_fix_ownership.sh b/scripts/ci/ci_fix_ownership.sh
index 5292710..7e85152 100755
--- a/scripts/ci/ci_fix_ownership.sh
+++ b/scripts/ci/ci_fix_ownership.sh
@@ -19,8 +19,6 @@
#
# Fixes ownership for files created inside container (files owned by root will
be owned by host user)
#
-set -x
-
export PYTHON_MAJOR_MINOR_VERSION=${PYTHON_MAJOR_MINOR_VERSION:-3.6}
# shellcheck source=scripts/ci/_script_init.sh
@@ -38,6 +36,7 @@ HOST_OS="$(uname -s)"
export HOST_USER_ID
export HOST_GROUP_ID
export HOST_OS
+export BACKEND="sqlite"
docker-compose \
-f "${MY_DIR}/docker-compose/base.yml" \