Merge pull request #9802 from mathiasaerts/patch-1

Fix 'healt' typo
This commit is contained in:
Julian Brost 2023-08-14 09:38:41 +02:00 committed by GitHub
commit 986991ed48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -225,12 +225,12 @@ apply Service "db-size-" for (db_name => config in host.vars.databases) {
check_command = "mysql_health" check_command = "mysql_health"
if (config.mysql_health_username) { if (config.mysql_health_username) {
vars.mysql_healt_username = config.mysql_health_username vars.mysql_health_username = config.mysql_health_username
} else { } else {
vars.mysql_health_username = "root" vars.mysql_health_username = "root"
} }
if (config.mysql_health_password) { if (config.mysql_health_password) {
vars.mysql_healt_password = config.mysql_health_password vars.mysql_health_password = config.mysql_health_password
} else { } else {
vars.mysql_health_password = "icingar0xx" vars.mysql_health_password = "icingar0xx"
} }