Avoid redundant HTTP request on some error cases (#10115)

th-downstream
ThibG 6 years ago committed by Eugen Rochko
parent ae14a371dc
commit c6a8bf710c

@ -68,6 +68,7 @@ module JsonLdHelper
return body_to_json(response.body_with_limit) if response.code == 200
end
# If request failed, retry without doing it on behalf of a user
return if on_behalf_of.nil?
build_request(uri).perform do |response|
response.code == 200 ? body_to_json(response.body_with_limit) : nil
end

Loading…
Cancel
Save