tests: use a more inclusive word for the default password

This change removes problematic language in the test environment.

Change-Id: I6f81ab68314902f0239babf887de04f8e30d8954
This commit is contained in:
Tristan Cacqueray 2020-07-09 13:38:20 +00:00
parent 141347e082
commit 1f7d3a879b
3 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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

View File

@ -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.