Subject: | Doesn't work for GET requests with a body |
Hi,
I have put together this minimal test case which shows that the Proxy stalls on GET requests
which have a body:
# plackup -MPlack::App::Proxy -e 'Plack::App::Proxy->new(remote =>
"http://127.0.0.1:9200")->to_app'
# curl -XGET http://localhost:5000/ -d 'BODY'
I works just fine when I do
# curl -XPOST http://localhost:5000/ -d 'BODY'
Cheers,
mo