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

chore: fix build

This commit is contained in:
Vladimir Mihailenco
2022-06-04 14:52:46 +03:00
parent 0aa94538ee
commit a15a89ea58
2 changed files with 3 additions and 3 deletions

View File

@ -324,7 +324,7 @@ func startRedis(port string, args ...string) (*redisProcess, error) {
p := &redisProcess{process, client}
registerProcess(port, p)
return p, err
return p, nil
}
func startSentinel(port, masterName, masterPort string) (*redisProcess, error) {