mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-25 17:18:44 +05:00
Order FilterIDs before concatenated to RouteID
This commit is contained in:
committed by
Dan Christian Bogos
parent
74f9aa132e
commit
5bad75b8df
@@ -1928,7 +1928,8 @@ func (tps TPRoutes) AsTPRouteProfile() (result []*utils.TPRouteProfile) {
|
||||
}
|
||||
routeID := tp.RouteID
|
||||
if tp.RouteFilterIDs != "" {
|
||||
routeID = utils.ConcatenatedKey(routeID, tp.RouteFilterIDs)
|
||||
routeID = utils.ConcatenatedKey(routeID,
|
||||
utils.NewStringSet(strings.Split(tp.RouteFilterIDs, utils.INFIELD_SEP)).Sha1())
|
||||
}
|
||||
sup, found := routeMap[tenID][routeID]
|
||||
if !found {
|
||||
|
||||
Reference in New Issue
Block a user