Skip to content

Commit

Permalink
Fix single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorreem authored Oct 23, 2024
1 parent db0ac75 commit a0621a5
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'],

Check failure on line 10 in config/sidekiq.rb

View workflow job for this annotation

GitHub Actions / Ruby Linting

Layout/FirstHashElementIndentation: Use 2 spaces for indentation in a hash, relative to the start of the line where the left curly brace is.
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
end

0 comments on commit a0621a5

Please sign in to comment.