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-02 09:11:13 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-11-25 04:07:38 -08:00
|
|
|
class Scheduler::Trends::RefreshScheduler
|
2019-09-02 09:11:13 -07:00
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2021-03-15 03:17:43 -07:00
|
|
|
sidekiq_options retry: 0
|
2019-09-02 09:11:13 -07:00
|
|
|
|
|
|
|
def perform
|
2021-11-25 04:07:38 -08:00
|
|
|
Trends.refresh!
|
2019-09-02 09:11:13 -07:00
|
|
|
end
|
|
|
|
end
|