Closed richsoni closed 7 years ago
I am using the example code:
# test.ru require 'rack-proxy' class Foo < Rack::Proxy def rewrite_env(env) env["HTTP_HOST"] = "example.com" env end def rewrite_response(triplet) status, headers, body = triplet headers["X-Foo"] = "Bar" triplet end end run Rack::Proxy.new(ssl_verify_none: true)
and, running rackup test.ru
rackup test.ru
I did some digging and it looks like the http.start is hanging.
http.start
I have not been able to find anything anywhere else about this. Has anyone run into this issue?
If you dont provide a rack.backend. It will make the request on :9292
rack.backend
I am using the example code:
and, running
rackup test.ru
I did some digging and it looks like the
http.start
is hanging.I have not been able to find anything anywhere else about this. Has anyone run into this issue?