Commit e2a4a056 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Don't pipe PATCH

pipe might receive a complete overhaul in the future but until then
make sure we pass this by default.

Prompted by simon on #varnish @ irc.linpro.no.
parent f4e3c278
......@@ -55,7 +55,8 @@ sub vcl_recv {
req.method != "POST" &&
req.method != "TRACE" &&
req.method != "OPTIONS" &&
req.method != "DELETE") {
req.method != "DELETE" &&
req.method != "PATCH") {
/* Non-RFC2616 or CONNECT which is weird. */
return (pipe);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment