@@ -41,6 +41,7 @@ def build_status_list(members, cell_infos):
41
41
'host' : svcinfo .get ('urlinfo' , {}).get ('host' , '' ),
42
42
'port' : str (svcinfo .get ('urlinfo' , {}).get ('port' , '' )),
43
43
'version' : '<unknown>' ,
44
+ 'synapse' : '<unknown>' ,
44
45
'nexs_indx' : 0
45
46
}
46
47
if svcname in cell_infos :
@@ -49,23 +50,24 @@ def build_status_list(members, cell_infos):
49
50
status .update ({
50
51
'nexs_indx' : cell_info .get ('nexsindx' , 0 ),
51
52
'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' , '' )),
53
55
'online' : 'True' ,
54
56
'ready' : str (cell_info .get ('ready' , False ))
55
57
})
56
58
group_status .append (status )
57
59
return group_status
58
60
59
61
def output_status (outp , vname , group_status ):
60
- header = ' {:<40} {:<10} {:<8} {:<7} {:<16} {:<9} {:<12} {:<10}' .format (
61
- 'name' , 'role' , 'online' , 'ready' , 'host' , 'port' , 'version' , 'nexus idx' )
62
+ header = ' {:<40} {:<10} {:<8} {:<7} {:<16} {:<9} {:<12} {:<12} {:< 10}' .format (
63
+ 'name' , 'role' , 'online' , 'ready' , 'host' , 'port' , 'version' , 'synapse' , ' nexus idx' )
62
64
outp .printf (header )
63
65
outp .printf ('#' * 120 )
64
66
outp .printf (vname )
65
67
for status in group_status :
66
68
if status ['nexs_indx' ] == 0 :
67
69
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 )
69
71
outp .printf (line )
70
72
71
73
def check_sync_status (group_status ):
0 commit comments