Fix indexing scheduler trying to index when Elasticsearch is disabled (#19805)
Fix #19646
This commit is contained in:
parent
d54e7ee61e
commit
d0c9ac3919
1 changed files with 2 additions and 0 deletions
|
@ -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}")
|
||||
|
|
Loading…
Reference in a new issue