diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-04-03 15:05:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 15:05:39 +0200 |
commit | 5c499f54e3ecc2fab6de2ff76441a11ddf3c503d (patch) | |
tree | c3d846d681a43130d38701204d3d273bf4e2a391 /config/initializers | |
parent | 4909c2e7183f38caedd4445928033dc208762609 (diff) |
Change root Chewy strategy to emit a warning instead of erroring out in production mode (#24327)
Diffstat (limited to 'config/initializers')
-rw-r--r-- | config/initializers/chewy.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/initializers/chewy.rb b/config/initializers/chewy.rb index 2a91efefc..daf4a5f32 100644 --- a/config/initializers/chewy.rb +++ b/config/initializers/chewy.rb @@ -19,6 +19,7 @@ Chewy.settings = { # cycle, which takes care of checking if Elasticsearch is enabled # or not. However, mind that for the Rails console, the :urgent # strategy is set automatically with no way to override it. +Chewy.root_strategy = :bypass_with_warning if Rails.env.production? Chewy.request_strategy = :mastodon Chewy.use_after_commit_callbacks = false |