You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/08/07 09:53:09 UTC

svn commit: r1511204 - /tomcat/trunk/bin/catalina.bat

Author: markt
Date: Wed Aug  7 07:53:09 2013
New Revision: 1511204

URL: http://svn.apache.org/r1511204
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55372
Make listening on localhost only be the default when enabling jpda.

Modified:
    tomcat/trunk/bin/catalina.bat

Modified: tomcat/trunk/bin/catalina.bat
URL: http://svn.apache.org/viewvc/tomcat/trunk/bin/catalina.bat?rev=1511204&r1=1511203&r2=1511204&view=diff
==============================================================================
--- tomcat/trunk/bin/catalina.bat (original)
+++ tomcat/trunk/bin/catalina.bat Wed Aug  7 07:53:09 2013
@@ -64,7 +64,7 @@ rem   JPDA_TRANSPORT  (Optional) JPDA tr
 rem                   command is executed. The default is "dt_socket".
 rem
 rem   JPDA_ADDRESS    (Optional) Java runtime options used when the "jpda start"
-rem                   command is executed. The default is 8000.
+rem                   command is executed. The default is localhost:8000.
 rem
 rem   JPDA_SUSPEND    (Optional) Java runtime options used when the "jpda start"
 rem                   command is executed. Specifies whether JVM should suspend
@@ -212,7 +212,7 @@ if not "%JPDA_TRANSPORT%" == "" goto got
 set JPDA_TRANSPORT=dt_socket
 :gotJpdaTransport
 if not "%JPDA_ADDRESS%" == "" goto gotJpdaAddress
-set JPDA_ADDRESS=8000
+set JPDA_ADDRESS=localhost:8000
 :gotJpdaAddress
 if not "%JPDA_SUSPEND%" == "" goto gotJpdaSuspend
 set JPDA_SUSPEND=n



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