Commit cd0650d7 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Use a 600 second timeout, 120 second is too little.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@710 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 347f701e
......@@ -65,7 +65,7 @@ vca_accept_sess(int fd)
{
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));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment