[master] 70fda4f Comment out another busy check
Poul-Henning Kamp
phk at FreeBSD.org
Tue Mar 18 11:35:02 CET 2014
commit 70fda4f4d85465c9672c208bab5a5343e35d92b6
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date: Tue Mar 18 10:34:39 2014 +0000
Comment out another busy check
diff --git a/bin/varnishd/cache/cache.h b/bin/varnishd/cache/cache.h
index 94fdf32..eac7546 100644
--- a/bin/varnishd/cache/cache.h
+++ b/bin/varnishd/cache/cache.h
@@ -456,7 +456,7 @@ oc_getobj(struct dstat *ds, struct objcore *oc)
{
CHECK_OBJ_NOTNULL(oc, OBJCORE_MAGIC);
- AZ(oc->flags & OC_F_BUSY);
+ // AZ(oc->flags & OC_F_BUSY);
AN(oc->methods);
AN(oc->methods->getobj);
return (oc->methods->getobj(ds, oc));
More information about the varnish-commit
mailing list