]> err.no Git - varnish/commitdiff
Oops, last commit included some debugging
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 1 Oct 2007 12:27:49 +0000 (12:27 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 1 Oct 2007 12:27:49 +0000 (12:27 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2076 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache_center.c
varnish-cache/bin/varnishd/cache_synthetic.c
varnish-cache/bin/varnishd/rfc2616.c

index 365ecc302098bff9023c4f842125a37a673f89e0..8f307b15005fa7eab04ee343c6ef30c7e27104fc 100644 (file)
@@ -310,7 +310,6 @@ cnt_fetch(struct sess *sp)
                http_PutStatus(sp->wrk, sp->fd, sp->obj->http, 503);
 
        sp->err_code = http_GetStatus(sp->obj->http);
-WSP(sp, SLT_Debug, "i %d err %d v %d c %d", i, sp->err_code, sp->obj->valid, sp->obj->cacheable);
        VCL_fetch_method(sp);
 
        switch (sp->handling) {
index ce6f8c19a9dd29ae422eaabe1e93b601e9fdcdf1..863f0023db8243b6b09fab1250db7ade4f6e1e27 100644 (file)
@@ -56,7 +56,6 @@ SYN_ErrorPage(struct sess *sp, int status, const char *reason, int ttl)
        double now;
        int fd;
 
-       WSL_Flush(sp->wrk);
        assert(status >= 100 && status <= 999);
        CHECK_OBJ_NOTNULL(sp, SESS_MAGIC);
        CHECK_OBJ_NOTNULL(sp->wrk, WORKER_MAGIC);
index 1f3c46c336bdc422976ccde2276315d3f7c115f8..28beeb48227a0eb78e6eaa283b857f06028774e8 100644 (file)
@@ -172,7 +172,6 @@ RFC2616_cache_policy(const struct sess *sp, const struct http *hp)
         * We do not support ranges yet, so 206 is out.
         */
        sp->obj->response = http_GetStatus(hp);
-WSP(sp, SLT_Debug, "resp: %d", sp->obj->response);
        switch (sp->obj->response) {
        case 200: /* OK */
        case 203: /* Non-Authoritative Information */