r710 - trunk/varnish-cache/bin/varnishd

phk at projects.linpro.no phk at projects.linpro.no
Mon Aug 7 12:40:19 CEST 2006


Author: phk
Date: 2006-08-07 12:40:19 +0200 (Mon, 07 Aug 2006)
New Revision: 710

Modified:
   trunk/varnish-cache/bin/varnishd/cache_acceptor.c
Log:
Use a 600 second timeout, 120 second is too little.


Modified: trunk/varnish-cache/bin/varnishd/cache_acceptor.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_acceptor.c	2006-08-07 09:21:54 UTC (rev 709)
+++ trunk/varnish-cache/bin/varnishd/cache_acceptor.c	2006-08-07 10:40:19 UTC (rev 710)
@@ -65,7 +65,7 @@
 	{
 	struct timeval tv;
 
-	tv.tv_sec = 120;
+	tv.tv_sec = 600;
 	tv.tv_usec = 0;
 	AZ(setsockopt(sp->fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof tv));
 	}




More information about the varnish-commit mailing list