We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6802751 + e26fb8d commit b4df167Copy full SHA for b4df167
app/lib/workers.rb
@@ -1,4 +1,17 @@
1
require 'sidekiq'
2
3
+Sidekiq.configure_server do |config|
4
+ config.redis = {
5
+ url: ENV["REDIS_URL"],
6
+ ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
7
+ }
8
+end
9
+Sidekiq.configure_client do |config|
10
11
12
13
14
15
+
16
require "#{File.expand_path '../..', __FILE__}/workers/buffy_worker.rb"
17
Dir["#{File.expand_path '../..', __FILE__}/workers/**/*.rb"].sort.each { |f| require f }
0 commit comments