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

trace_chunks.rb « redis « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2e77cb5df57c05a0b6a5d61deeab6b1d3247940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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