mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:09:00 +08:00
13 lines
241 B
Ruby
13 lines
241 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
|