mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
SMGeneric - improved session indexing considering runID, passive sessions with session prefix implementation
This commit is contained in:
@@ -164,6 +164,14 @@ func (sm StringMap) GetOne() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func (sm StringMap) Join(mps ...StringMap) {
|
||||
for _, mp := range mps {
|
||||
for k, v := range mp {
|
||||
sm[k] = v
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
func NoDots(m map[string]struct{}) map[string]struct{} {
|
||||
return MapKeysReplace(m, ".", ".")
|
||||
|
||||
Reference in New Issue
Block a user