[JBoss JIRA] Created: (JBESB-1733) Remove the use of maxThreads="1" in the gateway declarations of jboss-esb.xml in all quickstarts
by Burr Sutter (JIRA)
Remove the use of maxThreads="1" in the gateway declarations of jboss-esb.xml in all quickstarts
------------------------------------------------------------------------------------------------
Key: JBESB-1733
URL: http://jira.jboss.com/jira/browse/JBESB-1733
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Examples
Affects Versions: 4.2.1 CP2
Reporter: Burr Sutter
Assigned To: Burr Sutter
Fix For: 4.4
maxThreads="99" is presently ignored by the listener which has is-gateway="true"
<jms-listener name="JMS-Gateway"
busidref="quickstartGwChannel"
maxThreads="1"
is-gateway="true"
/>
The fact that this item is in the examples, suggests to people that it can be tuned it up and down but it is in fact, ignored by system. These examples confuse users.
It will now look like the following:
<jms-listener name="JMS-Gateway"
busidref="quickstartGwChannel"
is-gateway="true"
/>
while a native listener will still have max-threads like so:
<jms-listener name="helloWorld"
busidref="quickstartEsbChannel"
maxThreads="1"
/>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 4 months