Skip to content

Commit e4e725b

Browse files
committed
update cli tool
1 parent 903fa20 commit e4e725b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

synapse/tools/aha/mirror.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def build_status_list(members, cell_infos):
4141
'host': svcinfo.get('urlinfo', {}).get('host', ''),
4242
'port': str(svcinfo.get('urlinfo', {}).get('port', '')),
4343
'version': '<unknown>',
44+
'synapse': '<unknown>',
4445
'nexs_indx': 0
4546
}
4647
if svcname in cell_infos:
@@ -49,7 +50,8 @@ def build_status_list(members, cell_infos):
4950
status.update({
5051
'nexs_indx': cell_info.get('nexsindx', 0),
5152
'role': 'follower' if cell_info.get('uplink') else 'leader',
52-
'version': str(info.get('synapse', {}).get('verstring', '')),
53+
'version': str(info.get('cell', {}).get('verstring', '')),
54+
'synapse': str(info.get('synapse', {}).get('verstring', '')),
5355
'online': 'True',
5456
'ready': str(cell_info.get('ready', False))
5557
})
@@ -58,14 +60,14 @@ def build_status_list(members, cell_infos):
5860

5961
def output_status(outp, vname, group_status):
6062
header = ' {:<40} {:<10} {:<8} {:<7} {:<16} {:<9} {:<12} {:<10}'.format(
61-
'name', 'role', 'online', 'ready', 'host', 'port', 'version', 'nexus idx')
63+
'name', 'role', 'online', 'ready', 'host', 'port', 'version', 'synapse', 'nexus idx')
6264
outp.printf(header)
6365
outp.printf('#' * 120)
6466
outp.printf(vname)
6567
for status in group_status:
6668
if status['nexs_indx'] == 0:
6769
status['nexs_indx'] = '<unknown>'
68-
line = ' {name:<40} {role:<10} {online:<8} {ready:<7} {host:<16} {port:<9} {version:<12} {nexs_indx:<10}'.format(**status)
70+
line = ' {name:<40} {role:<10} {online:<8} {ready:<7} {host:<16} {port:<9} {version:<12} {synapse:<12} {nexs_indx:<10}'.format(**status)
6971
outp.printf(line)
7072

7173
def check_sync_status(group_status):

0 commit comments

Comments
 (0)