Skip to content
Snippets Groups Projects
Commit 608898c2 authored by Julian Rother's avatar Julian Rother
Browse files

Sort db hosts

parent 336d7c1a
No related branches found
No related tags found
No related merge requests found
......@@ -631,7 +631,7 @@ def dbstatus():
for host in config.get('MYSQL_DBSTATUS_HOSTS', [])+[config.get('MYSQL_HOST', None)]:
for _host in show('SHOW VARIABLES LIKE "wsrep_cluster_address"', host=host)['wsrep_cluster_address'][len('gcomm://'):].split(','):
hosts.add(_host)
for host in hosts:
for host in sorted(list(hosts)):
try:
status[host] = show('SHOW GLOBAL STATUS LIKE "wsrep%"', host=host)
variables[host] = show('SHOW GLOBAL VARIABLES LIKE "wsrep%"', host=host)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment