fix
liuxiaolong
2020-06-29 769a14470b2e41bcd8d1d217a7e5bb892d7d52a6
cache/redis.go
@@ -10,7 +10,7 @@
func init() {
   redisHost := beego.AppConfig.String("redisIp")
   redisPort := beego.AppConfig.String("redisPort")
   redisPort,_ := beego.AppConfig.Int("redisPort")
   poolSize := 20
   pool = redigo.NewPool(func() (redigo.Conn, error) {
      c, err := redigo.Dial("tcp", fmt.Sprintf("%s:%d", redisHost, redisPort))