Skip to content

Commit d0ad3a1

Browse files
authored
Merge branch 'master' into redox/20250331-ruleset-edges
2 parents 3eeccd0 + a0c9ac5 commit d0ad3a1

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
desc: Updated the ``aha.svc.mirror`` command to print the individual service version
3+
alongside the Synapse version.
4+
prs: []
5+
type: feat
6+
...

synapse/lib/stormlib/aha.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,7 @@ async def _methPoolSvcDel(self, svcname):
691691
{"name": "host", "width": 16},
692692
{"name": "port", "width": 8},
693693
{"name": "version", "width": 12},
694+
{"name": "synapse", "width": 12},
694695
{"name": "nexus idx", "width": 10},
695696
],
696697
"separators": {
@@ -732,6 +733,7 @@ async def _methPoolSvcDel(self, svcname):
732733
'host': $svcinfo.urlinfo.host,
733734
'port': $svcinfo.urlinfo.port,
734735
'version': '<unknown>',
736+
'synapse_version': '<unknown>',
735737
'nexs_indx': (0)
736738
})
737739
if ($cell_infos.$svcname) {
@@ -743,7 +745,8 @@ async def _methPoolSvcDel(self, svcname):
743745
} else {
744746
$status.role = 'leader'
745747
}
746-
$status.version = $info.synapse.verstring
748+
$status.version = $info.cell.verstring
749+
$status.synapse_version = $info.synapse.verstring
747750
}
748751
$group_status.append($status)
749752
}
@@ -779,6 +782,7 @@ async def _methPoolSvcDel(self, svcname):
779782
$status.host,
780783
$status.port,
781784
$status.version,
785+
$status.synapse_version,
782786
$status.nexs_indx
783787
)
784788
$lib.print($printer.row($row))

synapse/tools/aha/mirror.py

+6-4
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,23 +50,24 @@ 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
})
5658
group_status.append(status)
5759
return group_status
5860

5961
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')
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)