class Redis::Cluster::AmbiguousNodeError

Raised when cluster client can't select node.

Public Class Methods

new(command) click to toggle source
Calls superclass method
# 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