mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00
16 lines
452 B
Ruby
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
|