>>        /* Non-RFC2616 or CONNECT which is weird. */
>>        return (error);
>>    }
> 
> Please open a ticket on this one.
> 
> As a workaround, you can use:
> 
>       [...]
>       req.request != "DELETE") {
>           /* Non-RFC2616 or CONNECT which is weird. */
>           error 503;
> 
> (or any other status code than 503 which you might prefer)
> 

Hello

What is the difference  between

  [...]
        req.request != "DELETE") {
            /* Non-RFC2616 or CONNECT which is weird. */
            error 503;

and
  [...]
        req.request != "DELETE") {
            /* Non-RFC2616 or CONNECT which is weird. */
             return (error);

Vaclav Bilek
_______________________________________________
varnish-misc mailing list
[email protected]
http://projects.linpro.no/mailman/listinfo/varnish-misc

Reply via email to