This commit is contained in:
Nigel Brookes-Thomas 2020-03-13 16:49:26 +00:00
parent 2cfa847f6f
commit 26be6fb9bb
2 changed files with 1 additions and 2 deletions

View File

@ -37,7 +37,6 @@ class Roda
def proxy def proxy
method = Faraday.method(env['REQUEST_METHOD'].downcase.to_sym) method = Faraday.method(env['REQUEST_METHOD'].downcase.to_sym)
f_response = method.call(_proxy_url) { |req| _proxy_request(req) } f_response = method.call(_proxy_url) { |req| _proxy_request(req) }
pp f_response
_respond(f_response) _respond(f_response)
end end

View File

@ -2,6 +2,6 @@
class Roda class Roda
module Proxy module Proxy
VERSION = '1.0.2' VERSION = '1.0.3'
end end
end end