summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2021-12-07 17:46:29 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2021-12-07 17:46:29 +0100
commitf13c2107b39a6dd1e52bb582545631a4d93f2681 (patch)
tree8d471369a7e1d9858eb3e02cc1a167457c539e14
parent8dd1f01d0933596f3dde87f32b39bebca5aa1bff (diff)
downloadmariadb-git-f13c2107b39a6dd1e52bb582545631a4d93f2681.tar.gz
Don't beep in mysql_upgrade_service.exe
This beep looks especially strange, as mysqladmin output is redirected to the log file
-rw-r--r--sql/mysql_upgrade_service.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mysql_upgrade_service.cc b/sql/mysql_upgrade_service.cc
index 5afe4ccbc52..78302520f82 100644
--- a/sql/mysql_upgrade_service.cc
+++ b/sql/mysql_upgrade_service.cc
@@ -464,8 +464,8 @@ int main(int argc, char **argv)
if (WaitForSingleObject(mysqld_process, 0) != WAIT_TIMEOUT)
die("mysqld.exe did not start");
- if (run_tool(P_WAIT, mysqladmin_path, "--protocol=pipe",
- socket_param, "ping", NULL) == 0)
+ if (run_tool(P_WAIT, mysqladmin_path, "--protocol=pipe", socket_param,
+ "ping", "--no-beep", NULL) == 0)
{
break;
}