debian-mirror-gitlab/lib/gitlab/redis.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
708 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
module Gitlab
module Redis
# List all Gitlab::Redis::Wrapper descendants that are backed by an actual
# separate redis instance here.
#
# This will make sure the connection pool is initialized on application boot in
# config/initializers/7_redis.rb, instrumented, and used in health- & readiness checks.
ALL_CLASSES = [
Gitlab::Redis::Cache,
2023-04-23 21:23:45 +05:30
Gitlab::Redis::DbLoadBalancing,
2022-10-11 01:57:18 +05:30
Gitlab::Redis::Queues,
Gitlab::Redis::RateLimiting,
2023-03-17 16:20:25 +05:30
Gitlab::Redis::RepositoryCache,
2023-04-23 21:23:45 +05:30
Gitlab::Redis::ClusterRateLimiting,
2022-10-11 01:57:18 +05:30
Gitlab::Redis::Sessions,
Gitlab::Redis::SharedState,
Gitlab::Redis::TraceChunks
].freeze
end
end