debian-mirror-gitlab/lib/api/helpers/container_registry_helpers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
452 B
Ruby
Raw Normal View History

2021-11-18 22:05:49 +05:30
# frozen_string_literal: true
module API
module Helpers
module ContainerRegistryHelpers
extend ActiveSupport::Concern
included do
2022-04-04 11:22:00 +05:30
rescue_from Faraday::Error, ::ContainerRegistry::Path::InvalidRegistryPathError do |e|
2021-11-18 22:05:49 +05:30
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