Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sessions.rb « redis « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bf1eb6211d9e6bad48d8a41d4da6bd300f04910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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