Exception: Solr::Errors::ZookeeperRequired

Inherits:
StandardError
  • Object
show all
Defined in:
lib/solr/errors/zookeeper_required.rb

Constant Summary collapse

ZOOKEEPER_REQUIRED_MESSAGE =
'

  Solrb gem requires zookeeper for solr-cloud support.
  Please add "zk" gem to your Gemfile and run bundle install:

  gem "zk"

'.freeze

Instance Method Summary collapse

Constructor Details

#initializeZookeeperRequired

Returns a new instance of ZookeeperRequired.



13
14
15
# File 'lib/solr/errors/zookeeper_required.rb', line 13

def initialize
  super(ZOOKEEPER_REQUIRED_MESSAGE)
end