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

Rename OneConnPool to SingleConnPool.

This commit is contained in:
Vladimir Mihailenco
2012-08-06 17:04:30 +03:00
parent ee618a6290
commit b2805a5e04
3 changed files with 9 additions and 9 deletions

View File

@ -20,7 +20,7 @@ func newPubSubClient(client *Client) (*PubSubClient, error) {
c := &PubSubClient{
Client: &Client{
ConnPool: NewOneConnPool(pubSubConn),
ConnPool: NewSingleConnPool(pubSubConn),
},
ch: make(chan *Message),
}