summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/storage/null_circuit_breaker.rb
blob: 297c043d054c8cb91e33b5d35ccfbcb4381d5c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module Gitlab
  module Git
    module Storage
      class NullCircuitBreaker
        # These will have actual values
        attr_reader :storage,
                    :hostname

        # These will always have nil values
        attr_reader :storage_path,
                    :failure_wait_time,
                    :failure_reset_time,
                    :storage_timeout

        def initialize(storage, hostname, error: nil)
          @storage = storage
          @hostname = hostname
          @error = error
        end

        def perform
          @error ? raise(@error) : yield
        end

        def circuit_broken?
          !!@error
        end

        def failure_count_threshold
          1
        end

        def last_failure
          circuit_broken? ? Time.now : nil
        end

        def failure_count
          circuit_broken? ? 1 : 0
        end

        def failure_info
          Gitlab::Git::Storage::CircuitBreaker::FailureInfo.new(last_failure, failure_count)
        end
      end
    end
  end
end