Exception: Redis::Cluster::AmbiguousNodeError

Inherits:
BaseError
  • Object
show all
Defined in:
lib/redis/errors.rb

Overview

Raised when cluster client can’t select node.

Instance Method Summary collapse

Constructor Details

#initialize(command) ⇒ AmbiguousNodeError

Returns a new instance of AmbiguousNodeError.



75
76
77
# File 'lib/redis/errors.rb', line 75

def initialize(command)
  super("Cluster client doesn't know which node the #{command} command should be sent to.")
end