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

circuitbox.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 966320265aa5eddf6dddf2e540aecb96b769fbfe (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

Gitlab.ee do
  Circuitbox.configure do |config|
    config.default_circuit_store = Gitlab::CircuitBreaker::Store.new
    config.default_notifier = Gitlab::CircuitBreaker::Notifier.new
  end
end