Skip to content

Commit

Permalink
verify none on redis cache store
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio-e committed Oct 17, 2024
1 parent 29a4f66 commit 0e0e2ff
Show file tree
Hide file tree
Showing 4 changed files with 735 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ gem "pundit"
gem "rack-attack"
gem "rollbar"
gem "roo", "~> 2.8.0"
# gem "scout_apm"
gem "scout_apm"
gem "sidekiq", "<7"
gem "slim-rails"
gem "view_component"
Expand Down
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,8 @@ GEM
sprockets (> 3.0)
sprockets-rails
tilt
scout_apm (5.4.0)
parser
selectize-rails (0.12.6)
selenium-webdriver (4.10.0)
rexml (~> 3.2, >= 3.2.5)
Expand Down Expand Up @@ -592,6 +594,7 @@ PLATFORMS
arm64-darwin-23
x86_64-darwin-19
x86_64-darwin-20
x86_64-darwin-21
x86_64-linux

DEPENDENCIES
Expand Down Expand Up @@ -659,6 +662,7 @@ DEPENDENCIES
rspec-sidekiq
rubocop-rails (~> 2)!
rubocop-rspec (~> 2)!
scout_apm
shoulda-matchers (~> 4.0)
sidekiq (< 7)
simplecov
Expand Down
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
config.log_tags = [:request_id]

# Use a different cache store in production.
config.cache_store = :redis_cache_store, {url: ENV["REDIS_URL"]}
config.cache_store = :redis_cache_store, {url: ENV["REDIS_URL"], ssl_params: {verify_mode: OpenSSL::SSL::VERIFY_NONE}}

config.action_mailer.perform_caching = false

Expand Down
Loading

0 comments on commit 0e0e2ff

Please sign in to comment.