Class: RedisClient::Cluster::NodeMightBeDown

Inherits:
Error
  • Object
show all
Defined in:
lib/redis_client/cluster/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(_ = '') ⇒ NodeMightBeDown

Returns a new instance of NodeMightBeDown.



50
51
52
53
54
55
56
# File 'lib/redis_client/cluster/errors.rb', line 50

def initialize(_ = '')
  super(
    'The client is trying to fetch the latest cluster state ' \
    'because a subset of nodes might be down. ' \
    'It might continue to raise errors for a while.'
  )
end