From a91b857a431ec7fc9ddba3c21a94eb52701f4378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Wed, 3 Jan 2018 23:24:43 +0200 Subject: [PATCH] MXS-1593: Don't display stale status As the stale status is not a real status bit and it's used to retain the history of a master, there is no need to print it in any output. This output will only confuse users now that the stale status will not be cleared from masters that go down. --- server/core/server.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/core/server.cc b/server/core/server.cc index 95b17b612..45336d6de 100644 --- a/server/core/server.cc +++ b/server/core/server.cc @@ -706,10 +706,6 @@ server_status(const SERVER *server) { strcat(status, "Slave of External Server, "); } - if (server_status & SERVER_STALE_STATUS) - { - strcat(status, "Stale Status, "); - } if (server_status & SERVER_MASTER_STICKINESS) { strcat(status, "Master Stickiness, ");