From 44664875d3598bd7ee6bdc3eb038f08a28acf55c Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 8 Dec 2005 22:44:06 +0000 Subject: [PATCH] raised timeouts, to avoid killed connection when searching lots of document text svn: r1568 --- collects/help/private/config.ss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/collects/help/private/config.ss b/collects/help/private/config.ss index 68e8ce4dd0..abe3f445a6 100644 --- a/collects/help/private/config.ss +++ b/collects/help/private/config.ss @@ -28,11 +28,11 @@ (protocol-message "protocol-error.html") (collect-garbage "collect-garbage.html")) (timeouts - (default-servlet-timeout 120) - (password-connection-timeout 300) - (servlet-connection-timeout 86400) - (file-per-byte-connection-timeout 1/20) - (file-base-connection-timeout 30)) + (default-servlet-timeout 12000) + (password-connection-timeout 3000) + (servlet-connection-timeout 864000) + (file-per-byte-connection-timeout 10) + (file-base-connection-timeout 30000)) (paths (configuration-root "conf") (host-root ,host-root)