Use IPv6 for created listeners

When listeners are created, use the default values of [::]:3306.
This commit is contained in:
Markus Mäkelä
2017-03-29 17:14:39 +03:00
parent 1901a3bc0a
commit b458b63756
4 changed files with 6 additions and 6 deletions

View File

@ -630,8 +630,8 @@ static int mysql_auth_load_users(SERV_LISTENER *port)
if (loaded < 0)
{
MXS_ERROR("[%s] Unable to load users for listener %s listening at %s:%d.", service->name,
port->name, port->address ? port->address : "0.0.0.0", port->port);
MXS_ERROR("[%s] Unable to load users for listener %s listening at [%s]:%d.", service->name,
port->name, port->address ? port->address : "::", port->port);
if (instance->inject_service_user)
{