Skip to content

Commit 903fa20

Browse files
committed
Update aha.svc.list to print the service version alongside the synapse version (SYN-8900)
1 parent 2872eab commit 903fa20

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
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))

0 commit comments

Comments
 (0)