Delay when fetching a page without Content-Length
Poul-Henning Kamp
phk at phk.freebsd.dk
Sat Mar 31 20:18:36 CEST 2007
In message <87648hffku.fsf at topper.koldfront.dk>, Adam =?iso-8859-1?Q?Sj=F8gren?= writes:
>On Sat, 31 Mar 2007 17:17:10 +0000, Poul-Henning wrote:
>
>> Which version of Varnish are you running ?
>
>The one from Debian unstable backported to stable, i.e. 1.0.3:
>
> 13 VCL_call c fetch
> 13 VCL_return c pass
Hmm, you're running into a bug in the pass implementation which
have since been fixed.
Try using pipe mode for authenticated requests instead, by putting
this in your vcl_recv function:
if (req.http.Authenticate || req.http.Cookie) {
pipe;
}
--
Poul-Henning Kamp | UNIX since Zilog Zeus 3.20
phk at FreeBSD.ORG | TCP/IP since RFC 956
FreeBSD committer | BSD since 4.3-tahoe
Never attribute to malice what can adequately be explained by incompetence.
More information about the varnish-misc
mailing list