mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
85e03a7f68
(or `Time.zone.now`)
21 lines
377 B
Ruby
21 lines
377 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class RunHeartbeat < ::Jobs::Base
|
|
|
|
sidekiq_options queue: 'critical'
|
|
|
|
def self.heartbeat_key
|
|
'heartbeat_last_run'
|
|
end
|
|
|
|
def execute(args)
|
|
Discourse.redis.set(self.class.heartbeat_key, Time.now.to_i.to_s)
|
|
end
|
|
|
|
def self.last_heartbeat
|
|
Discourse.redis.get(heartbeat_key).to_i
|
|
end
|
|
end
|
|
end
|