This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v1-10-test by this push:
new c38c3e5 fixup! Conditional MySQL Client installation (#11174)
c38c3e5 is described below
commit c38c3e5e5ade973a0f2163e6a186fcd2d3d4045c
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Oct 3 16:08:38 2020 +0200
fixup! Conditional MySQL Client installation (#11174)
---
scripts/docker/install_mysql.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/docker/install_mysql.sh b/scripts/docker/install_mysql.sh
index 66627c0..1ddc76b 100755
--- a/scripts/docker/install_mysql.sh
+++ b/scripts/docker/install_mysql.sh
@@ -50,7 +50,7 @@ if [[ ${INSTALL_MYSQL_CLIENT:="true"} == "true" ]]; then
gpgconf --kill all
rm -rf "${GNUPGHOME}"
apt-key list > /dev/null
- echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-5.6" | tee -a
/etc/apt/sources.list.d/mysql.list
+ echo "deb http://repo.mysql.com/apt/debian/ buster mysql-5.7" | tee -a
/etc/apt/sources.list.d/mysql.list
apt-get update
apt-get install --no-install-recommends -y "${packages[@]}"
apt-get autoremove -yqq --purge