2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
33 lines
661 B
Ruby
33 lines
661 B
Ruby
module Gitlab
|
|
module HealthChecks
|
|
module Redis
|
|
class SharedStateCheck
|
|
extend SimpleAbstractCheck
|
|
|
|
class << self
|
|
def check_up
|
|
check
|
|
end
|
|
|
|
private
|
|
|
|
def metric_prefix
|
|
'redis_shared_state_ping'
|
|
end
|
|
|
|
def successful?(result)
|
|
result == 'PONG'
|
|
end
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def check
|
|
catch_timeout 10.seconds do
|
|
Gitlab::Redis::SharedState.with(&:ping)
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|