You can use the obj.cacheable property, which is a suggestion from Varnish
about the response should be cacheable. By default Error response codes
aren't cached, so test the following:

sub vcl_fetch {
if (!obj.cacheable){
return (pass);
}
}
_______________________________________________
varnish-misc mailing list
varnish-misc@projects.linpro.no
http://projects.linpro.no/mailman/listinfo/varnish-misc

Reply via email to