[jboss-cvs] JBossAS SVN: r59922 - trunk/cluster/src/etc.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 22 15:19:45 EST 2007


Author: bstansberry at jboss.com
Date: 2007-01-22 15:19:45 -0500 (Mon, 22 Jan 2007)
New Revision: 59922

Modified:
   trunk/cluster/src/etc/cluster-beans.xml
Log:
Work around case sensitivity issue

Modified: trunk/cluster/src/etc/cluster-beans.xml
===================================================================
--- trunk/cluster/src/etc/cluster-beans.xml	2007-01-22 18:42:50 UTC (rev 59921)
+++ trunk/cluster/src/etc/cluster-beans.xml	2007-01-22 20:19:45 UTC (rev 59922)
@@ -21,7 +21,7 @@
         <!-- Externally injected services -->  
         <property name="runtimeConfig">
            <bean name="DefaultPartition-HAPartitionCacheRuntimeConfig" class="org.jboss.cache.config.RuntimeConfig">
-              <property name="transactionManager"><inject bean="jboss:service=TransactionManager" property="transactionManager"/></property>
+              <property name="transactionManager"><inject bean="jboss:service=TransactionManager" property="TransactionManager"/></property>
               <property name="muxChannelFactory"><inject bean="jgroups.mux:name=Multiplexer"/></property>
            </bean>
         </property>
@@ -120,7 +120,7 @@
                <property name="nodeAddress">${jboss.bind.address}</property>
          
                <!-- Inject the naming service port as an aid in creating a nodeUniqueId.  Not needed if nodeUniqueId is set -->
-               <property name="namingServicePort"><inject bean="jboss:service=Naming" property="port"/></property>
+               <property name="namingServicePort"><inject bean="jboss:service=Naming" property="Port"/></property>
                
                <!-- Determine if deadlock detection is enabled -->
                <property name="deadlockDetection">false</property>




More information about the jboss-cvs-commits mailing list