summaryrefslogtreecommitdiff
path: root/lib/gitlab/health_checks/probes/liveness.rb
blob: b4d346e945e5be83dfaa010225a42db709166eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module HealthChecks
    module Probes
      class Liveness
        def execute
          Probes::Status.new(200, status: 'ok')
        end
      end
    end
  end
end