class Redis::Cluster::InitialSetupError

Raised when client connected to redis as cluster mode and failed to fetch cluster state information by commands.

Public Class Methods

new(errors) click to toggle source

@param errors [Array<Redis::BaseError>]

Calls superclass method
# File lib/redis/errors.rb, line 52
def initialize(errors)
  super("Redis client could not fetch cluster information: #{errors.map(&:message).uniq.join(',')}")
end