Removing unused LCRPrefixMatching from RALs config

This commit is contained in:
DanB
2019-02-09 18:39:41 +01:00
parent 17c777c1bf
commit d7d9856cc2
7 changed files with 41 additions and 57 deletions

View File

@@ -53,18 +53,17 @@ func init() {
}
var (
dm *DataManager
cdrStorage CdrStorage
debitPeriod = 10 * time.Second
globalRoundingDecimals = 6
thresholdS rpcclient.RpcClientConnection // used by RALs to communicate with ThresholdS
statS rpcclient.RpcClientConnection
pubSubServer rpcclient.RpcClientConnection
userService rpcclient.RpcClientConnection
aliasService rpcclient.RpcClientConnection
schedCdrsConns rpcclient.RpcClientConnection
rpSubjectPrefixMatching bool
lcrSubjectPrefixMatching bool
dm *DataManager
cdrStorage CdrStorage
debitPeriod = 10 * time.Second
globalRoundingDecimals = 6
thresholdS rpcclient.RpcClientConnection // used by RALs to communicate with ThresholdS
statS rpcclient.RpcClientConnection
pubSubServer rpcclient.RpcClientConnection
userService rpcclient.RpcClientConnection
aliasService rpcclient.RpcClientConnection
schedCdrsConns rpcclient.RpcClientConnection
rpSubjectPrefixMatching bool
)
// Exported method to set the storage getter.
@@ -89,10 +88,6 @@ func SetRpSubjectPrefixMatching(flag bool) {
rpSubjectPrefixMatching = flag
}
func SetLcrSubjectPrefixMatching(flag bool) {
lcrSubjectPrefixMatching = flag
}
/*
Sets the database for CDR storing, used by *cdrlog in first place
*/