mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +08:00
0d3d2c43a0
This commit also adds a rubocop rule to prevent global variables.
10 lines
214 B
Ruby
10 lines
214 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
|