Include requested URL into the message on network errors (#4945)

lolsob-rspec
unarist 2017-09-14 23:12:50 +09:00 committed by Eugen Rochko
parent 579a7c2654
commit f7ae3f39f6
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,8 @@ class Request
def perform
http_client.headers(headers).public_send(@verb, @url.to_s, @options)
rescue => e
raise e.class, "#{e.message} on #{@url}"
end
def headers