Browse Source

Sort by partition/ns/servicename instead of the reverse

pull/12596/head
Kyle Havlovitz 3 years ago
parent
commit
a559de63dd
  1. 4
      agent/consul/server_overview.go

4
agent/consul/server_overview.go

@ -170,13 +170,13 @@ func getCatalogOverview(catalog *structs.CatalogContents) *structs.CatalogSummar
summarySort := func(slice []structs.HealthSummary) func(int, int) bool {
return func(i, j int) bool {
if slice[i].Name < slice[j].Name {
if slice[i].PartitionOrEmpty() < slice[j].PartitionOrEmpty() {
return true
}
if slice[i].NamespaceOrEmpty() < slice[j].NamespaceOrEmpty() {
return true
}
return slice[i].PartitionOrEmpty() < slice[j].PartitionOrEmpty()
return slice[i].Name < slice[j].Name
}
}
sort.Slice(summary.Nodes, summarySort(summary.Nodes))

Loading…
Cancel
Save