mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
6e95c152ed
Doing the following renames: Jobs::ProblemChecks → Jobs::RunProblemChecks Jobs::ProblemCheck → Jobs::RunProblemCheck This is to disambiguate the ProblemCheck class name, ease fuzzy finding, and avoid needing to use :: in a bunch of places.
28 lines
893 B
Ruby
28 lines
893 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
# This job runs all of the scheduled problem checks for the admin dashboard
|
|
# on a regular basis. To add a problem check, add a new class that inherits
|
|
# the `ProblemCheck` base class.
|
|
class RunProblemChecks < ::Jobs::Scheduled
|
|
sidekiq_options retry: false
|
|
|
|
every 10.minutes
|
|
|
|
def execute(_args)
|
|
# This way if the problems have been solved in the meantime, then they will
|
|
# not be re-added by the relevant checker, and will be cleared.
|
|
AdminDashboardData.clear_found_scheduled_check_problems
|
|
|
|
scheduled_checks =
|
|
ProblemCheckTracker.all.filter_map do |tracker|
|
|
tracker.check if tracker.check.scheduled? && tracker.ready_to_run?
|
|
end
|
|
|
|
scheduled_checks.each do |check|
|
|
Jobs.enqueue(:run_problem_check, check_identifier: check.identifier.to_s)
|
|
end
|
|
end
|
|
end
|
|
end
|