Fix indexing scheduler trying to index when Elasticsearch is disabled (#19805)

Fix #19646
lolsob-rspec
Eugen Rochko 2022-11-05 22:31:52 +01:00 committed by GitHub
parent d67659a2cd
commit 4c6f7ee8ca
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,8 @@ class Scheduler::IndexingScheduler
sidekiq_options retry: 0
def perform
return unless Chewy.enabled?
indexes.each do |type|
with_redis do |redis|
ids = redis.smembers("chewy:queue:#{type.name}")