PerlDancer / Dancer

The easiest way to write web applications with Perl (Perl web micro-framework)

Home Page:http://perldancer.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

proxy related failure with 1.3500 in t/02_request/20_body.t

gregoa opened this issue · comments

Adding HTTP::Tiny::NoProxy and using it for the tests is a nice new fetaure and works well, except that t/02_request/20_body.t still fails when http_proxy is set. I haven't looked too closely but I assume this is because the test uses 127.0.0.11 but HTTP::Tiny::NoProxy only sets no_proxy for 127.0.0.1.

Dancer-1.3513 is on its way to CPAN now with a fix that should solve this (as you say, 127.0.0.1 was passed to HTTP::Tiny's no_proxy, but 127.0.0.11 wasn't)

Thanks for the report!

Looks good, thanks.
(I set http_proxy to something useless and the tests still work.)

Thanks for checking!