From 1802151c62613cddea13cbfd7609a61166cc1bd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Wed, 28 Nov 2018 09:45:39 +0200 Subject: [PATCH] Fix blr server protocol name The server that the binlogrouter creates used the old protocol name that caused a confusing deprecation warning. --- server/modules/routing/binlogrouter/blr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/binlogrouter/blr.cc b/server/modules/routing/binlogrouter/blr.cc index d43dd94c0..01660c047 100644 --- a/server/modules/routing/binlogrouter/blr.cc +++ b/server/modules/routing/binlogrouter/blr.cc @@ -807,7 +807,7 @@ static MXS_ROUTER* createInstance(SERVICE* service, MXS_CONFIG_PARAMETER* params { {"address", "_none_"}, {"port", "3306"}, - {"protocol", "MySQLBackend"}, + {"protocol", "mariadbbackend"}, {"authenticator", "MySQLBackendAuth"} }, config_server_params);