Revert "fix: Autoloading during initialization deprecation warning (#5628)"
This reverts commit 86ca7f4a8d
.
This commit is contained in:
parent
89cfc5bbf3
commit
37db0a1c83
2 changed files with 14 additions and 18 deletions
|
@ -1,16 +1,14 @@
|
||||||
Rails.application.reloader.to_prepare do
|
|
||||||
# Alfred
|
# Alfred
|
||||||
# Add here as you use it for more features
|
# Add here as you use it for more features
|
||||||
# Used for Round Robin, Conversation Emails & Online Presence
|
# Used for Round Robin, Conversation Emails & Online Presence
|
||||||
$alfred = ConnectionPool.new(size: 5, timeout: 3) do
|
$alfred = ConnectionPool::Wrapper.new(size: 5, timeout: 3) do
|
||||||
redis = Rails.env.test? ? MockRedis.new : Redis.new(Redis::Config.app)
|
redis = Rails.env.test? ? MockRedis.new : Redis.new(Redis::Config.app)
|
||||||
Redis::Namespace.new('alfred', redis: redis, warning: true)
|
Redis::Namespace.new('alfred', redis: redis, warning: true)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Velma : Determined protector
|
# Velma : Determined protector
|
||||||
# used in rack attack
|
# used in rack attack
|
||||||
$velma = ConnectionPool.new(size: 5, timeout: 3) do
|
$velma = ConnectionPool::Wrapper.new(size: 5, timeout: 3) do
|
||||||
config = Rails.env.test? ? MockRedis.new : Redis.new(Redis::Config.app)
|
redis = Rails.env.test? ? MockRedis.new : Redis.new(Redis::Config.app)
|
||||||
Redis::Namespace.new('velma', redis: config, warning: true)
|
Redis::Namespace.new('velma', redis: redis, warning: true)
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,6 +12,4 @@ Sidekiq.configure_server do |config|
|
||||||
end
|
end
|
||||||
|
|
||||||
# https://github.com/ondrejbartas/sidekiq-cron
|
# https://github.com/ondrejbartas/sidekiq-cron
|
||||||
Rails.application.reloader.to_prepare do
|
|
||||||
Sidekiq::Cron::Job.load_from_hash YAML.load_file(schedule_file) if File.exist?(schedule_file) && Sidekiq.server?
|
Sidekiq::Cron::Job.load_from_hash YAML.load_file(schedule_file) if File.exist?(schedule_file) && Sidekiq.server?
|
||||||
end
|
|
||||||
|
|
Loading…
Reference in a new issue