mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 19:13:49 +08:00
5cb00d5528
With manual merge conflicts
10 lines
212 B
Ruby
10 lines
212 B
Ruby
# 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
|