1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00
This commit is contained in:
Vladimir Mihailenco
2014-06-28 14:47:37 +03:00
parent 72a6069cc5
commit 678b8b3667
6 changed files with 64 additions and 50 deletions

View File

@ -14,7 +14,7 @@ func (c *Client) PubSub() *PubSub {
return &PubSub{
baseClient: &baseClient{
opt: c.opt,
connPool: newSingleConnPool(c.connPool, nil, false),
connPool: newSingleConnPool(c.connPool, false),
},
}
}