9 lines
166 B
Ruby
9 lines
166 B
Ruby
module Events
|
|
class BustCacheWorker < BustCacheBaseWorker
|
|
sidekiq_options queue: :low_priority
|
|
|
|
def perform
|
|
CacheBuster.bust_events
|
|
end
|
|
end
|
|
end
|