Sha256: 17e9ebb0d5cd087c66db10ca679a87b3b84c082cbf8e8932ffa6970f5b63e7c7
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 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 # 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 scheduler_hostname = ENV["UNICORN_SCHEDULER_HOSTNAME"] if !scheduler_hostname || scheduler_hostname.split(',').include?(`hostname`.strip) MiniScheduler.start end end end
Version data entries
3 entries across 3 versions & 1 rubygems