mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
14 lines
242 B
Ruby
14 lines
242 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
|
|
# used to ensure at least 1 sidekiq is running correctly
|
|
class Heartbeat < ::Jobs::Scheduled
|
|
every 3.minute
|
|
|
|
def execute(args)
|
|
::Jobs.enqueue(:run_heartbeat, {})
|
|
end
|
|
end
|
|
end
|