Skip to content

Commit

Permalink
Fix single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorreem committed Oct 24, 2024
1 parent d0dedb7 commit d1b7468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/sidekiq.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Sidekiq.configure_server do |config|
config.redis = {
url: ENV["REDIS_URL"],
url: ENV['REDIS_URL'],
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
end

Sidekiq.configure_client do |config|
config.redis = {
url: ENV["REDIS_URL"],
url: ENV['REDIS_URL'],
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
end

0 comments on commit d1b7468

Please sign in to comment.