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.
This commit is contained in:
Markus Mäkelä
2018-01-03 23:24:43 +02:00
parent 5c8c20abe4
commit a91b857a43

View File

@ -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, ");