Files
gitlab-foss/lib/gitlab/redis/cluster_sessions.rb
2025-01-22 09:36:30 +00:00

15 lines
297 B
Ruby

# frozen_string_literal: true
module Gitlab
module Redis
class ClusterSessions < ::Gitlab::Redis::Wrapper
class << self
# The data we store on Sessions used to be stored on SharedState.
def config_fallback
SharedState
end
end
end
end
end