debian-mirror-gitlab/lib/gitlab/health_checks/probes/status.rb
2019-12-21 20:55:43 +05:30

15 lines
253 B
Ruby

# frozen_string_literal: true
module Gitlab
module HealthChecks
module Probes
Status = Struct.new(:http_status, :json) do
# We accept 2xx
def success?
http_status / 100 == 2
end
end
end
end
end