[Jboss-cvs] JBossAS SVN: r57099 - trunk/connector/src/resources/stylesheets

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 22 23:53:36 EDT 2006


Author: weston.price at jboss.com
Date: 2006-09-22 23:53:35 -0400 (Fri, 22 Sep 2006)
New Revision: 57099

Modified:
   trunk/connector/src/resources/stylesheets/ConnectionFactoryTemplate.xsl
Log:
[JBAS-2737] Do not destroy connections below minimum for timed out connections
if stictMin is in effect. 

Modified: trunk/connector/src/resources/stylesheets/ConnectionFactoryTemplate.xsl
===================================================================
--- trunk/connector/src/resources/stylesheets/ConnectionFactoryTemplate.xsl	2006-09-23 03:52:58 UTC (rev 57098)
+++ trunk/connector/src/resources/stylesheets/ConnectionFactoryTemplate.xsl	2006-09-23 03:53:35 UTC (rev 57099)
@@ -417,6 +417,16 @@
               <attribute name="PreFill">False</attribute>
             </xsl:otherwise>
           </xsl:choose>
+          <xsl:choose>
+            <xsl:when test="strict-min">
+              <attribute name="StrictMin"><xsl:value-of select="strict-min"/></attribute>
+            </xsl:when>
+            <xsl:otherwise>
+              <attribute name="StrictMin">False</attribute>
+            </xsl:otherwise>
+          </xsl:choose>
+          
+          
           <xsl:choose>            
             <xsl:when test="statistics-formatter">
               <attribute name="StatisticsFormatter"><xsl:value-of select="statistics-formatter"/></attribute>




More information about the jboss-cvs-commits mailing list