1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-19 18:50:39 +00:00

Merge pull request from DennisMao/hotfixFileCachePanic

fix panic cause by the map
This commit is contained in:
astaxie
2019-02-02 16:38:11 +08:00
committed by GitHub

2
cache/file.go vendored

@ -65,7 +65,7 @@ func NewFileCache() Cache {
// the config need to be like {CachePath:"/cache","FileSuffix":".bin","DirectoryLevel":2,"EmbedExpiry":0}
func (fc *FileCache) StartAndGC(config string) error {
var cfg map[string]string
cfg := make(map[string]string)
json.Unmarshal([]byte(config), &cfg)
if _, ok := cfg["CachePath"]; !ok {
cfg["CachePath"] = FileCachePath