small fix

This commit is contained in:
Edwardro22
2017-08-03 13:49:37 +03:00
parent fae33969ea
commit 71ef085e12
8 changed files with 46 additions and 82 deletions

4
engine/storage_interface.go Normal file → Executable file
View File

@@ -111,9 +111,9 @@ type DataDB interface {
GetReqFilterIndexes(dbKey string) (indexes map[string]map[string]utils.StringMap, err error)
SetReqFilterIndexes(dbKey string, indexes map[string]map[string]utils.StringMap) (err error)
MatchReqFilterIndex(dbKey, fieldName, fieldVal string) (itemIDs utils.StringMap, err error)
GetStatsQueue(sqID string, skipCache bool, transactionID string) (sq *StatsQueue, err error)
GetStatsQueue(sqID string) (sq *StatsQueue, err error)
SetStatsQueue(sq *StatsQueue) (err error)
RemStatsQueue(sqID string, transactionID string) (err error)
RemStatsQueue(sqID string) (err error)
GetSQStoredMetrics(sqID string) (sqSM *SQStoredMetrics, err error)
SetSQStoredMetrics(sqSM *SQStoredMetrics) (err error)
RemSQStoredMetrics(sqID string) (err error)