Module: Sidekiq

Defined in:
lib/sidekiq/history.rb,
lib/sidekiq/history/version.rb,
lib/sidekiq/history/middleware.rb,
lib/sidekiq/history/web_extension.rb

Defined Under Namespace

Modules: History

Class Method Summary collapse

Class Method Details

.history_max_countObject



11
12
13
14
# File 'lib/sidekiq/history.rb', line 11

def self.history_max_count
  return 1000 if @history_max_count.nil?
  @history_max_count
end

.history_max_count=(value) ⇒ Object



7
8
9
# File 'lib/sidekiq/history.rb', line 7

def self.history_max_count=(value)
  @history_max_count = value
end