0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 09:05:23 +08:00
discourse/app/jobs/onceoff/clean_up_sidekiq_statistic.rb
2023-01-09 14:14:59 +00:00

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