mirror of
https://github.com/redis/go-redis.git
synced 2025-04-17 20:17:02 +03:00
* fix: badConn check(#2053) * fix: internalpool test * fix: sentinel test * fix: conncheck ut * fix: remove maxBadConnRetries * fix: add connCheck.deadline check Signed-off-by: monkey92t <golang@88.com>
9 lines
160 B
Go
9 lines
160 B
Go
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd,!solaris,!illumos
|
|
|
|
package pool
|
|
|
|
import "net"
|
|
|
|
func connCheck(conn net.Conn) error {
|
|
return nil
|
|
} |