diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-02-11 22:59:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-11 22:59:44 +0100 |
commit | e20700fe8fa22562d3df10ad0361e65676a01231 (patch) | |
tree | e8d27d70e04e2ae74b70d1d318618e70758efa5f | |
parent | cf36d184f41b5bfc0c63d6c8409b05cca2eb67ee (diff) |
Fix Chewy trying to update index with the wrong strategy (#6464)
-rw-r--r-- | config/initializers/chewy.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/initializers/chewy.rb b/config/initializers/chewy.rb index bef2746ec..702f7516c 100644 --- a/config/initializers/chewy.rb +++ b/config/initializers/chewy.rb @@ -11,7 +11,8 @@ Chewy.settings = { journal: false, } -Chewy.root_strategy = enabled ? :sidekiq : :bypass +Chewy.root_strategy = enabled ? :sidekiq : :bypass +Chewy.request_strategy = enabled ? :sidekiq : :bypass module Chewy class << self |