debian-mirror-gitlab/lib/api/helpers/container_registry_helpers.rb
2022-04-04 11:22:00 +05:30

16 lines
452 B
Ruby

# frozen_string_literal: true
module API
module Helpers
module ContainerRegistryHelpers
extend ActiveSupport::Concern
included do
rescue_from Faraday::Error, ::ContainerRegistry::Path::InvalidRegistryPathError do |e|
service_unavailable!('We are having trouble connecting to the Container Registry. If this error persists, please review the troubleshooting documentation.')
end
end
end
end
end