You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2022/01/18 03:36:46 UTC

[airflow] branch main updated: Switch to new MySQL public key (#20912)

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

kamilbregula pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 7e29506  Switch to new MySQL public key (#20912)
7e29506 is described below

commit 7e29506037fa543f5d9b438320db064cdb820c7b
Author: Jarek Potiuk <ja...@potiuk.com>
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
---
 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)"