commit 34d7c970d4bd3a5832ecded86f2c28e83dbba2ba from: Omar Polo date: Thu Apr 18 07:22:19 2024 UTC http-server: send $res in wrong method case commit - 44740114875c96dd82e588aab0025e97c25d3997 commit + 34d7c970d4bd3a5832ecded86f2c28e83dbba2ba blob - 5c7cbf390e7d1c58fbaf2f567a17268e42982935 blob + 3403e68d5d2bf5ace11786adbaf30f53f9655d7f --- regress/cmdline/http-server +++ regress/cmdline/http-server @@ -165,7 +165,7 @@ while (1) { warn "unknown method ". $req->method . "\n"; my $res = HTTP::Response->new(405, "Method not Allowed"); - + $client->send_response($res); last; } }