From: phk Date: Tue, 12 Sep 2006 20:50:19 +0000 (+0000) Subject: Distinguish the explanation for the first request from the one used X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=beef9fe70b74e3bda5ea78a70b77db56398264a0;p=varnish Distinguish the explanation for the first request from the one used on subsequent requests. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@975 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_center.c b/varnish-cache/bin/varnishd/cache_center.c index 5e5c1ada..8b0533e4 100644 --- a/varnish-cache/bin/varnishd/cache_center.c +++ b/varnish-cache/bin/varnishd/cache_center.c @@ -252,9 +252,9 @@ cnt_first(struct sess *sp) return (0); } if (i == 1) - vca_close_session(sp, "overflow"); + vca_close_session(sp, "blast"); else if (i == 2) - vca_close_session(sp, "no request"); + vca_close_session(sp, "silent"); else INCOMPL(); clock_gettime(CLOCK_REALTIME, &sp->t_end);