This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-2-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 70be53954d2df83fe0c06f8d51cb956d28a0f138 Author: Jarek Potiuk <[email protected]> AuthorDate: Tue Jan 18 04:35:42 2022 +0100 Switch to new MySQL public key (#20912) MySQL changed key used to sign their apt packages. This caused docker building failing for prod images as MySQL could not be installed. New Public Key is used instead. Fixes: #20911 (cherry picked from commit 7e29506037fa543f5d9b438320db064cdb820c7b) --- 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 52aca49..955f130 100755 --- a/scripts/docker/install_mysql.sh +++ b/scripts/docker/install_mysql.sh @@ -44,7 +44,7 @@ install_mysql_client() { exit 1 fi - local key="A4A9406876FCBD3C456770C88C718D3B5072E1F5" + local key="467B942D3A79BD29" readonly key GNUPGHOME="$(mktemp -d)"
