svn commit: r752323 - in /tomcat/trunk: java/org/apache/catalina/startup/Catalina.java webapps/docs/config/systemprops.xml

2009-03-10 Thread fhanik
Author: fhanik Date: Wed Mar 11 00:46:54 2009 New Revision: 752323 URL: http://svn.apache.org/viewvc?rev=752323&view=rev Log: Add a system property that lets the startup phase exit if the server encounters an exception during the initialization phase. The default is false, which means the behavio

Tomcat Shutdown

2009-03-10 Thread AlexElba
Hello, Are they any static variables that tomcat will set when user will try to shutdown tomcat? Thanks -- View this message in context: http://www.nabble.com/Tomcat-Shutdown-tp22444678p22444678.html Sent from the Tomcat - Dev mailing list archive at Nabble.com. --

Re: Apache Tomcat Connectors snapshot 1.2.28-dev-752124 available for testing.

2009-03-10 Thread sebb
On 10/03/2009, Rainer Jung wrote: > Hi all, > > version 1.2.28 of mod_jk is approaching its release. A code snapshot > (revision 752124) is available at: > > http://tomcat.apache.org/dev/dist/tomcat-connectors/jk/source/jk-1.2.28-dev/ > The NOTICE file is non-standard, as it does not contain th

svn commit: r752215 - /tomcat/trunk/java/org/apache/juli/ClassLoaderLogManager.java

2009-03-10 Thread fhanik
Author: fhanik Date: Tue Mar 10 18:53:27 2009 New Revision: 752215 URL: http://svn.apache.org/viewvc?rev=752215&view=rev Log: When adding a logger, its better to always add the parent loggers, all the way up the chain. The cost of this is relatively small, since the number of packages compared t

svn commit: r752209 - /tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml

2009-03-10 Thread rjung
Author: rjung Date: Tue Mar 10 18:36:49 2009 New Revision: 752209 URL: http://svn.apache.org/viewvc?rev=752209&view=rev Log: Fix incomplete changelog entry. Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changel

Apache Tomcat Connectors snapshot 1.2.28-dev-752124 available for testing.

2009-03-10 Thread Rainer Jung
Hi all, version 1.2.28 of mod_jk is approaching its release. A code snapshot (revision 752124) is available at: http://tomcat.apache.org/dev/dist/tomcat-connectors/jk/source/jk-1.2.28-dev/ Please join us in ensuring the quality of the forthcoming release by testing this snapshot. The source ar

svn commit: r752090 - /tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml

2009-03-10 Thread mturk
Author: mturk Date: Tue Mar 10 12:27:52 2009 New Revision: 752090 URL: http://svn.apache.org/viewvc?rev=752090&view=rev Log: Note the JkWatchdogInterval fix. Thanks to Weibin Yao for spotting this Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Modified: tomcat/connect

svn commit: r752087 - /tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c

2009-03-10 Thread mturk
Author: mturk Date: Tue Mar 10 12:23:59 2009 New Revision: 752087 URL: http://svn.apache.org/viewvc?rev=752087&view=rev Log: Fix signed/unsigne compile warning Modified: tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c Modified: tomcat/connectors/trunk/jk/native/common/jk_uri_wor

Re: what's the unit of 'JkWatchdogInterval' in mod_jk 1.2.27?

2009-03-10 Thread Mladen Turk
Weibin Yao wrote: The document said:"This directive configures the watchdog thread interval in seconds." from http://tomcat.apache.org/connectors-doc/reference/apache.html. But the source code of mod_jk 1.2.27 ,mod_jk.c, line 2842->line 2843: /* apr_sleep() uses microseconds */ apr_sleep(

svn commit: r752082 - /tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c

2009-03-10 Thread mturk
Author: mturk Date: Tue Mar 10 12:19:23 2009 New Revision: 752082 URL: http://svn.apache.org/viewvc?rev=752082&view=rev Log: We sleep for 100ms, so multiply the watchdog_interval by 10 Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Modified: tomcat/connectors/trunk/jk/native

svn commit: r752078 - /tomcat/trunk/conf/web.xml

2009-03-10 Thread remm
Author: remm Date: Tue Mar 10 12:10:20 2009 New Revision: 752078 URL: http://svn.apache.org/viewvc?rev=752078&view=rev Log: - Add xiph mime types, after reading a blog. Modified: tomcat/trunk/conf/web.xml Modified: tomcat/trunk/conf/web.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/con

svn commit: r752072 - /tomcat/trunk/java/javax/servlet/ServletRequestWrapper.java

2009-03-10 Thread markt
Author: markt Date: Tue Mar 10 11:41:58 2009 New Revision: 752072 URL: http://svn.apache.org/viewvc?rev=752072&view=rev Log: Fix infinite loop. Modified: tomcat/trunk/java/javax/servlet/ServletRequestWrapper.java Modified: tomcat/trunk/java/javax/servlet/ServletRequestWrapper.java URL: http

what's the unit of 'JkWatchdogInterval' in mod_jk 1.2.27?

2009-03-10 Thread Weibin Yao
The document said:"This directive configures the watchdog thread interval in seconds." from http://tomcat.apache.org/connectors-doc/reference/apache.html. But the source code of mod_jk 1.2.27 ,mod_jk.c, line 2842->line 2843: /* apr_sleep() uses microseconds */ apr_sleep((apr_time_t)(10)

DO NOT REPLY [Bug 46808] mod_jk 1.2.27 can't detect network error

2009-03-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46808 --- Comment #16 from Rainer Jung 2009-03-10 01:13:06 PST --- Doh! Fixed (r752016 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=752016 ). -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- Y

svn commit: r752016 - /tomcat/connectors/trunk/jk/native/common/jk_util.c

2009-03-10 Thread rjung
Author: rjung Date: Tue Mar 10 08:12:30 2009 New Revision: 752016 URL: http://svn.apache.org/viewvc?rev=752016&view=rev Log: Forgot to add error_escalation_time to unique_properties and supported_properties. Modified: tomcat/connectors/trunk/jk/native/common/jk_util.c Modified: tomcat/connec

DO NOT REPLY [Bug 46808] mod_jk 1.2.27 can't detect network error

2009-03-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46808 --- Comment #15 from Eiji Takahashi 2009-03-09 23:59:56 PST --- Created an attachment (id=23364) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=23364) patch for jk_util.c Thank you for dealing with this problem. I will ex