gitlab-org--gitlab-foss/lib/gitlab/instrumentation/throttle.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
314 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Gitlab
module Instrumentation
class Throttle
KEY = :instrumentation_throttle_safelist
def self.safelist
Gitlab::SafeRequestStore[KEY]
end
def self.safelist=(name)
Gitlab::SafeRequestStore[KEY] = name
end
end
end
end