MXS-1957 Change the default authenticators to MariaDB aliases

Using MySQLAuth or MySQLBackendAuth causes warning to be logged.
This commit is contained in:
Marko
2019-05-09 12:11:39 +03:00
parent 50fef6f361
commit 22a9e20f1f
2 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ MXS_MODULE* MXS_CREATE_MODULE()
*/ */
static char* gw_backend_default_auth() static char* gw_backend_default_auth()
{ {
return const_cast<char*>("MySQLBackendAuth"); return const_cast<char*>("mariadbbackendauth");
} }
/*lint +e14 */ /*lint +e14 */

View File

@ -193,7 +193,7 @@ static void thread_finish(void)
*/ */
static char* gw_default_auth() static char* gw_default_auth()
{ {
return (char*)"MySQLAuth"; return (char*)"mariadbauth";
} }
std::string get_version_string(SERVICE* service) std::string get_version_string(SERVICE* service)