You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2008/09/11 07:47:26 UTC

svn commit: r694140 - /tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c

Author: mturk
Date: Wed Sep 10 22:47:26 2008
New Revision: 694140

URL: http://svn.apache.org/viewvc?rev=694140&view=rev
Log:
Fix #46766 by creating watchdog thread only if watchdog_interval was set

Modified:
    tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c

Modified: tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c?rev=694140&r1=694139&r2=694140&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c (original)
+++ tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Wed Sep 10 22:47:26 2008
@@ -1820,7 +1820,7 @@
             }
         }
     }
-    if (rc) {
+    if (rc && watchdog_interval) {
         HANDLE wt;
         DWORD  wi;
         wt = CreateThread(NULL, 0, watchdog_thread, NULL, 0, &wi);



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org