From 1f7d3a879b2d2ff379cc174c15047d14ed56abd4 Mon Sep 17 00:00:00 2001 From: Tristan Cacqueray Date: Thu, 9 Jul 2020 13:38:20 +0000 Subject: [PATCH] tests: use a more inclusive word for the default password This change removes problematic language in the test environment. Change-Id: I6f81ab68314902f0239babf887de04f8e30d8954 --- tools/docker-compose.yaml | 2 +- tools/test-setup-docker.sh | 2 +- tools/test-setup.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/docker-compose.yaml b/tools/docker-compose.yaml index e826a3fb86..d7c3ce0cd9 100644 --- a/tools/docker-compose.yaml +++ b/tools/docker-compose.yaml @@ -5,7 +5,7 @@ services: container_name: zuul-test-mysql image: mysql:5.7 environment: - - MYSQL_ROOT_PASSWORD=insecure_slave + - MYSQL_ROOT_PASSWORD=insecure_worker ports: - "3306:3306" tmpfs: diff --git a/tools/test-setup-docker.sh b/tools/test-setup-docker.sh index 0b9879d8f7..c64dccb41c 100755 --- a/tools/test-setup-docker.sh +++ b/tools/test-setup-docker.sh @@ -25,7 +25,7 @@ else fi -MYSQL="${DOCKER} exec zuul-test-mysql mysql -u root -pinsecure_slave" +MYSQL="${DOCKER} exec zuul-test-mysql mysql -u root -pinsecure_worker" if [ "${COMPOSE}" == "docker-compose" ]; then docker-compose rm -sf diff --git a/tools/test-setup.sh b/tools/test-setup.sh index 183ba6adfb..7416040aeb 100755 --- a/tools/test-setup.sh +++ b/tools/test-setup.sh @@ -25,7 +25,7 @@ sudo service zookeeper start # The root password for the MySQL database; pass it in via # MYSQL_ROOT_PW. -DB_ROOT_PW=${MYSQL_ROOT_PW:-insecure_slave} +DB_ROOT_PW=${MYSQL_ROOT_PW:-insecure_worker} # This user and its password are used by the tests, if you change it, # your tests might fail.