Update test for go 1.10 and update travis to run on go 1.10

This commit is contained in:
TeoV
2018-02-19 07:04:28 -05:00
committed by Dan Christian Bogos
parent 3e15ab12ef
commit 6f4a0025dd
12 changed files with 30 additions and 30 deletions

2
cache/cache.go vendored
View File

@@ -168,7 +168,7 @@ func GetCloned(key string) (cln interface{}, err error) {
if !hasIt {
return nil, utils.NewCGRError(utils.Cache,
utils.NotFoundCaps, utils.ItemNotFound,
fmt.Sprintf("item with key <%s> was not found in <%s>", key))
fmt.Sprintf("item with key <%s> was not found in <%s>", key,cln))
} else if origVal == nil {
return nil, nil
}