lib/riddle/configuration/searchd.rb in riddle-0.9.8.1533.10 vs lib/riddle/configuration/searchd.rb in riddle-1.0.0

- old
+ new

@@ -1,11 +1,13 @@ module Riddle class Configuration class Searchd < Riddle::Configuration::Section - self.settings = [:address, :port, :log, :query_log, :read_timeout, - :max_children, :pid_file, :max_matches, :seamless_rotate, - :preopen_indexes, :unlink_old] + self.settings = [:listen, :address, :port, :log, :query_log, + :read_timeout, :client_timeout, :max_children, :pid_file, :max_matches, + :seamless_rotate, :preopen_indexes, :unlink_old, :attr_flush_period, + :ondisk_dict_default, :max_packet_size, :mva_updates_pool, + :crash_log_path, :max_filters, :max_filter_values] attr_accessor *self.settings def render raise ConfigurationError unless valid? @@ -20,6 +22,6 @@ def valid? !( @port.nil? || @pid_file.nil? ) end end end -end \ No newline at end of file +end