Explorar o código

redisc update

marion %!s(int64=4) %!d(string=hai) anos
pai
achega
d1e4e57b3c
Modificáronse 1 ficheiros con 1 adicións e 10 borrados
  1. 1 10
      utils/redis/redis_conn.go

+ 1 - 10
utils/redis/redis_conn.go

@@ -101,16 +101,7 @@ func (h *Hub) conn() error {
 
 // 连接测试
 func (h *Hub) ping() error {
-	// 连接测试
-	conn, err := h.Get()
-	if nil != err {
-		return err
-	}
-	defer func(conn redis.Conn) {
-		_ = conn.Close()
-	}(conn)
-
-	if reply, err := redis.String(conn.Do("PING")); err != nil || reply != "PONG" {
+	if reply, err := redis.String(h.Do("PING")); err != nil || reply != "PONG" {
 		if err != nil {
 			h.LOG().Warnf("Can not connect to redis: %s", err.Error())
 		} else {