You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by vi...@apache.org on 2013/04/22 09:28:02 UTC

svn commit: r1470400 - /tomcat/trunk/webapps/docs/config/cluster-receiver.xml

Author: violetagg
Date: Mon Apr 22 07:28:02 2013
New Revision: 1470400

URL: http://svn.apache.org/r1470400
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=54872
https://issues.apache.org/bugzilla/show_bug.cgi?id=54872
Correct the range for the bindPort of the cluster receiver object.
Correct the example.

Modified:
    tomcat/trunk/webapps/docs/config/cluster-receiver.xml

Modified: tomcat/trunk/webapps/docs/config/cluster-receiver.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/cluster-receiver.xml?rev=1470400&r1=1470399&r2=1470400&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/config/cluster-receiver.xml (original)
+++ tomcat/trunk/webapps/docs/config/cluster-receiver.xml Mon Apr 22 07:28:02 2013
@@ -80,9 +80,9 @@
     <attribute name="port" required="false">
       The listen port for incoming data. The default value is <code>4000</code>.
       To avoid port conflicts the receiver will automatically bind to a free port within the range of
-      <code> port &lt;= bindPort &lt;= port+autoBind</code>
+      <code> port &lt;= bindPort &lt; port+autoBind</code>
       So for example, if port is 4000, and autoBind is set to 10, then the receiver will open up
-      a server socket on the first available port in the range 4000-4100.
+      a server socket on the first available port in the range 4000-4009.
     </attribute>
     <attribute name="autoBind" required="false">
       Default value is <code>100</code>.



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