summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-25 16:27:56 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-25 16:27:56 -0600
commitb5c9eeeb43b88c8a1319853e1a92d92b1c858057 (patch)
treed2691a651e2787d156c94b0ad4781a40e9536031 /lib
parent20174fe7d811ade45febe9995d348c6ae7276fca (diff)
downloadplack-client-b5c9eeeb43b88c8a1319853e1a92d92b1c858057.tar.gz
plack-client-b5c9eeeb43b88c8a1319853e1a92d92b1c858057.zip
new plack version fixes this
Diffstat (limited to 'lib')
-rw-r--r--lib/Plack/Client.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Plack/Client.pm b/lib/Plack/Client.pm
index 1f80aae..064ac9d 100644
--- a/lib/Plack/Client.pm
+++ b/lib/Plack/Client.pm
@@ -243,11 +243,6 @@ sub _http_request_to_env {
$req->uri->port(-1);
}
- # work around http::message::psgi bug - see github issue 163 for plack
- if (!$req->uri->path) {
- $req->uri->path('/');
- }
-
my $env = $req->to_psgi;
# work around http::message::psgi bug - see github issue 150 for plack