This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-10-01 01:19:11 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Chewy
|
|
|
|
class Strategy
|
2020-12-22 17:13:55 +01:00
|
|
|
class CustomSidekiq < Sidekiq
|
|
|
|
def update(_type, _objects, _options = {})
|
|
|
|
super if Chewy.enabled?
|
2019-10-01 01:19:11 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|