Skip to content

Commit

Permalink
fix sidekiq
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiomagalhaes committed Nov 4, 2024
1 parent aa1ebd5 commit e617987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/initializers/sidekiq.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Sidekiq.configure_server do |config|
config.redis = {
url: ENV.fetch('REDIS_URL', nil),
size: 10
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}

config.on(:startup) do
Expand All @@ -26,6 +26,6 @@
Sidekiq.configure_client do |config|
config.redis = {
url: ENV.fetch('REDIS_URL', nil),
size: 1
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
end

0 comments on commit e617987

Please sign in to comment.