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