Skip to content

Commit

Permalink
Add verification configuration to sidekiq
Browse files Browse the repository at this point in the history
  • Loading branch information
etagwerker committed Aug 23, 2024
1 parent 6390f04 commit f65b4cb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/initializers/redis.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Sidekiq.configure_server do |config|
config.redis = { ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE } }
end

Sidekiq.configure_client do |config|
config.redis = { ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE } }
end

0 comments on commit f65b4cb

Please sign in to comment.