mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 09:05:23 +08:00
9 lines
214 B
Ruby
Vendored
9 lines
214 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanUpSidekiqStatistic < ::Jobs::Onceoff
|
|
def execute_onceoff(args)
|
|
Discourse.redis.without_namespace.del("sidekiq:sidekiq:statistic")
|
|
end
|
|
end
|
|
end
|