gitlab-org--gitlab-foss/lib/gitlab/redis/sessions.rb

13 lines
257 B
Ruby

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