1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-29 17:41:15 +03:00

Fix race in PubSub

This commit is contained in:
Vladimir Mihailenco
2017-06-29 17:05:08 +03:00
parent fbc8000fd1
commit 0d94a7bc88
4 changed files with 25 additions and 51 deletions

View File

@ -3,7 +3,6 @@ package redis_test
import (
"errors"
"fmt"
"log"
"net"
"os"
"os/exec"
@ -52,7 +51,7 @@ var cluster = &clusterScenario{
}
func init() {
redis.SetLogger(log.New(os.Stderr, "redis: ", log.LstdFlags|log.Lshortfile))
//redis.SetLogger(log.New(os.Stderr, "redis: ", log.LstdFlags|log.Lshortfile))
}
var _ = BeforeSuite(func() {