[Varnish] #139: Varnish 1.1 dies with assert error in cnt_done upon PURGE
Varnish
varnish-bugs at projects.linpro.no
Sun Aug 5 21:41:11 CEST 2007
#139: Varnish 1.1 dies with assert error in cnt_done upon PURGE
-----------------------------------------+----------------------------------
Reporter: anders | Owner: phk
Type: defect | Status: new
Priority: high | Milestone:
Component: varnishd | Version: 1.1
Severity: major | Resolution:
Keywords: varnishd core dump cnt_done |
-----------------------------------------+----------------------------------
Comment (by anders):
The rest of my VCL, not posted before, is:
sub vcl_miss {
if (req.request == "PURGE") {
error 404 "Not in cache.";
} else {
fetch;
}
}
sub vcl_hit {
if (req.request == "PURGE") {
set obj.ttl = 0s;
error 200 "Purged.";
} else {
deliver;
}
}
That's all.
--
Ticket URL: <http://varnish.projects.linpro.no/ticket/139#comment:2>
Varnish <http://varnish.projects.linpro.no/>
The Varnish HTTP Accelerator
More information about the varnish-bugs
mailing list