Index: openacs-4/packages/acs-tcl/tcl/pools-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/pools-init.tcl,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-tcl/tcl/pools-init.tcl 13 Oct 2007 04:22:12 -0000 1.5 +++ openacs-4/packages/acs-tcl/tcl/pools-init.tcl 17 Oct 2010 21:06:09 -0000 1.6 @@ -1,11 +1,11 @@ if {[ns_info version] eq "4.5"} { set cfgsection "ns/server/[ns_info server]" - set minthreads [ns_config $cfgsection minthreads 0] + set minthreads [ns_config $cfgsection minthreads 5] set maxthreads [ns_config $cfgsection maxthreads 10] - set maxconns [ns_config $cfgsection maxconnections 0] - set timeout [ns_config $cfgsection threadtimeout 0] - + set maxconns [ns_config $cfgsection maxconnections 100] + set timeout [ns_config $cfgsection threadtimeout 120] + ns_pools set default -minthreads $minthreads -maxthreads $maxthreads -maxconns $maxconns -timeout $timeout ns_log Notice "Default Pool: [ns_pools get default]"