Browse Source

redisc update

marion 4 years ago
parent
commit
d1e4e57b3c
1 changed files with 1 additions and 10 deletions
  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 {