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