summaryrefslogtreecommitdiff
path: root/lib/gitlab/redis/sessions.rb
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