1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Check cluster state before running the tests

This commit is contained in:
Vladimir Mihailenco
2018-07-23 12:01:13 +03:00
parent 3143c672b6
commit 4ae24be287
2 changed files with 33 additions and 7 deletions

View File

@ -21,10 +21,6 @@ func (c *PubSub) ReceiveMessageTimeout(timeout time.Duration) (*Message, error)
return c.receiveMessage(timeout)
}
func (c *ClusterClient) GetState() (*clusterState, error) {
return c.state.Get()
}
func (c *ClusterClient) LoadState() (*clusterState, error) {
return c.loadState()
}