Sha256: 2fa068d97e8d2af29c41a7bbaa9c0dc7627c83241bd777887fb388d0ac72fc74

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

MiniScheduler.configure do |config|
  # An instance of Redis. See https://github.com/redis/redis-rb

  # config.redis = $redis

  # Define a custom exception handler when an exception is raised
  # by a scheduled job. By default, SidekiqExceptionHandler is used.

  # config.job_exception_handler do |ex, context|
  #   ...
  # end

  # Add code to be called after a scheduled job runs. An argument
  # with stats about the execution is passed, including these fields:
  # name, hostname, pid, started_at, duration_ms, live_slots_start,
  # live_slots_finish, success, error

  # config.job_ran do |stats|
  #   ...
  # end

  # Before each tick, the configured block is run to check if the next job
  # should be scheduled. The block should return a boolean where a return value
  # of `True` skip scheduling.

  # config.skip_schedule do
  #   ...
  # end

  # Add code that runs before processing requests to the
  # scheduler pages of the Sidekiq web UI.

  # config.before_sidekiq_web_request do
  #   ...
  # end
end

if Sidekiq.server? && defined?(Rails)
  Rails.application.config.after_initialize do
    MiniScheduler.start
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mini_scheduler-0.10.0 lib/generators/mini_scheduler/install/templates/mini_scheduler_initializer.rb
mini_scheduler-0.9.2 lib/generators/mini_scheduler/install/templates/mini_scheduler_initializer.rb
mini_scheduler-0.9.1 lib/generators/mini_scheduler/install/templates/mini_scheduler_initializer.rb
mini_scheduler-0.9.0 lib/generators/mini_scheduler/install/templates/mini_scheduler_initializer.rb