Author: violetagg
Date: Mon Apr 22 07:50:09 2013
New Revision: 1470403

URL: http://svn.apache.org/r1470403
Log:
Merged revision 1470400 from tomcat/trunk:
Fix 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/tc7.0.x/trunk/   (props changed)
    tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml

Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1470400

Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1470403&r1=1470402&r2=1470403&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Mon Apr 22 07:50:09 2013
@@ -77,6 +77,14 @@
       </fix>
     </changelog>
   </subsection>
+  <subsection name="Web applications">
+    <changelog>
+      <fix>
+        <bug>54872</bug>: Correct Cluster Receiver page of Tomcat
+        documentation. (violetagg)
+      </fix>
+    </changelog>
+  </subsection>
   <subsection name="jdbc-pool">
     <changelog>
       <update>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml?rev=1470403&r1=1470402&r2=1470403&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml Mon Apr 22 
07:50:09 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-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to