1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/rails.rb

63 lines
2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Sidekiq
class Rails < ::Rails::Engine
# We need to setup this up before any application configuration which might
# change Sidekiq middleware.
#
# This hook happens after `Rails::Application` is inherited within
# config/application.rb and before config is touched, usually within the
# class block. Definitely before config/environments/*.rb and
# config/initializers/*.rb.
config.before_configuration do
if defined?(::ActiveRecord)
Sidekiq.server_middleware do |chain|
if ::Rails::VERSION::MAJOR < 5
require 'sidekiq/middleware/server/active_record'
chain.add Sidekiq::Middleware::Server::ActiveRecord
end
require 'sidekiq/middleware/server/active_record_cache'
chain.add Sidekiq::Middleware::Server::ActiveRecordCache
end
end
end
config.after_initialize do
# This hook happens after all initializers are run, just before returning
# from config/environment.rb back to sidekiq/cli.rb.
# We have to add the reloader after initialize to see if cache_classes has
# been turned on.
#
# None of this matters on the client-side, only within the Sidekiq process itself.
#
Sidekiq.configure_server do |_|
if ::Rails::VERSION::MAJOR >= 5
Sidekiq.options[:reloader] = Sidekiq::Rails::Reloader.new
end
end
end
2016-02-01 18:59:20 -05:00
class Reloader
def initialize(app = ::Rails.application)
@app = app
end
def call
2016-04-28 13:02:03 -04:00
@app.reloader.wrap do
yield
2016-02-01 18:59:20 -05:00
end
end
2016-04-28 13:38:46 -04:00
def inspect
"#<Sidekiq::Rails::Reloader @app=#{@app.class.name}>"
end
2016-02-01 18:59:20 -05:00
end
end if defined?(::Rails)
end
if defined?(::Rails) && ::Rails::VERSION::MAJOR < 4
$stderr.puts("**************************************************")
$stderr.puts("⛔️ WARNING: Sidekiq server is no longer supported by Rails 3.2 - please ensure your server/workers are updated")
$stderr.puts("**************************************************")
end