1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Don't beep in mysql_upgrade_service.exe

This beep looks especially strange, as mysqladmin output is redirected to
the log file
This commit is contained in:
Vladislav Vaintroub
2021-12-07 17:46:29 +01:00
parent 8dd1f01d09
commit f13c2107b3

View File

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