engine: resources: Add the proper prefix to grouped http resources
Resources that can be grouped into the http:server resource must have that prefix. Grouping is basically hierarchical, and without that common prefix, it means we'd have to special-case our grouping algorithm.
This commit is contained in:
@@ -181,7 +181,7 @@ func (obj RHVSlice) Less(i, j int) bool {
|
||||
li := len(si)
|
||||
lj := len(sj)
|
||||
|
||||
if li != lj { // eg: http:ui vs. http:ui:text
|
||||
if li != lj { // eg: http:server:ui vs. http:server:ui:text
|
||||
return li > lj // reverse
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user