From fdc451244a6bb28dc694a2bbade42233545eb97b Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Mon, 17 Feb 2014 01:28:50 +0200 Subject: [PATCH] fixed typo --- apier/tpactiontimings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apier/tpactiontimings.go b/apier/tpactiontimings.go index f895c2839..51a9a685f 100644 --- a/apier/tpactiontimings.go +++ b/apier/tpactiontimings.go @@ -73,7 +73,7 @@ func (self *ApierV1) GetTPActionPlanIds(attrs AttrGetTPActionPlanIds, reply *[]s if missing := utils.MissingStructFields(&attrs, []string{"TPid"}); len(missing) != 0 { //Params missing return fmt.Errorf("%s:%v", utils.ERR_MANDATORY_IE_MISSING, missing) } - if ids, err := self.StorDb.GetTPTableIds(attrs.TPid, utils.TBL_TP_ACTION_PLANS, "", nil); err != nil { + if ids, err := self.StorDb.GetTPTableIds(attrs.TPid, utils.TBL_TP_ACTION_PLANS, "tag", nil); err != nil { return fmt.Errorf("%s:%s", utils.ERR_SERVER_ERROR, err.Error()) } else if ids == nil { return errors.New(utils.ERR_NOT_FOUND)