2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-22 23:13:18 -04:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class RunHeartbeat < ::Jobs::Base
|
2019-08-30 06:26:16 -04:00
|
|
|
sidekiq_options queue: "critical"
|
|
|
|
|
|
|
|
def self.heartbeat_key
|
|
|
|
"heartbeat_last_run"
|
|
|
|
end
|
|
|
|
|
2014-04-22 23:13:18 -04:00
|
|
|
def execute(args)
|
2020-03-09 12:37:49 -04:00
|
|
|
Discourse.redis.set(self.class.heartbeat_key, Time.now.to_i.to_s)
|
2019-08-30 06:26:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.last_heartbeat
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.get(heartbeat_key).to_i
|
2014-04-22 23:13:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|