class Redis::Cluster::Slot

def find_node_key_of_slave(slot)

def find_node_key_of_slave(slot)
  return nil unless exists?(slot)
  return find_node_key_of_master(slot) if replica_disabled?
  @map[slot][:slaves].sample
end