[hornetq-commits] JBoss hornetq SVN: r9093 - trunk/docs/user-manual/en.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Apr 12 04:21:14 EDT 2010


Author: jmesnil
Date: 2010-04-12 04:21:13 -0400 (Mon, 12 Apr 2010)
New Revision: 9093

Modified:
   trunk/docs/user-manual/en/flow-control.xml
Log:
https://jira.jboss.org/jira/browse/HORNETQ-306: User manual example has wrong address-full-policy value

* fixed blocking producer window based flow control config snippet

Modified: trunk/docs/user-manual/en/flow-control.xml
===================================================================
--- trunk/docs/user-manual/en/flow-control.xml	2010-04-10 12:51:46 UTC (rev 9092)
+++ trunk/docs/user-manual/en/flow-control.xml	2010-04-12 08:21:13 UTC (rev 9093)
@@ -254,13 +254,13 @@
                <address-settings>
                   <address-setting match="jms.queue.exampleQueue">            
                      <max-size-bytes>100000</max-size-bytes>
-                     <address-full-policy>DROP</address-full-policy>   
+                     <address-full-policy>BLOCK</address-full-policy>   
                   </address-setting>
                &lt;/address-settings></programlisting>
             <para>The above example would set the max size of the JMS queue "exampleQueue" to be
                100000 bytes and would block any producers sending to that address to prevent that
                max size being exceeded.</para>
-            <para>Note the policy must be set to <literal>DROP</literal> to enable blocking producer
+            <para>Note the policy must be set to <literal>BLOCK</literal> to enable blocking producer
                flow control.</para>
             <para>Please note the default value for <literal>address-full-policy</literal> is to
                   <literal>PAGE</literal>. Please see the chapter on paging for more information on



More information about the hornetq-commits mailing list