[hornetq-commits] JBoss hornetq SVN: r9391 - trunk/src/config/stand-alone/non-clustered.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Jul 9 10:39:16 EDT 2010


Author: jmesnil
Date: 2010-07-09 10:39:16 -0400 (Fri, 09 Jul 2010)
New Revision: 9391

Modified:
   trunk/src/config/stand-alone/non-clustered/hornetq-beans.xml
Log:
https://jira.jboss.org/browse/HORNETQ-437: /non-clustered/hornetq-beans.xml should pick up port properties from run.sh script

* add configurable properties for JNDI server

Modified: trunk/src/config/stand-alone/non-clustered/hornetq-beans.xml
===================================================================
--- trunk/src/config/stand-alone/non-clustered/hornetq-beans.xml	2010-07-09 14:04:42 UTC (rev 9390)
+++ trunk/src/config/stand-alone/non-clustered/hornetq-beans.xml	2010-07-09 14:39:16 UTC (rev 9391)
@@ -9,10 +9,10 @@
       <property name="namingInfo">
          <inject bean="Naming"/>
       </property>
-      <property name="port">1099</property>
-      <property name="bindAddress">localhost</property>
-      <property name="rmiPort">1098</property>
-      <property name="rmiBindAddress">localhost</property>
+      <property name="port">${jnp.port:1099}</property>
+      <property name="bindAddress">${jnp.host:localhost}</property>
+      <property name="rmiPort">${jnp.rmiPort:1098}</property>
+      <property name="rmiBindAddress">${jnp.host:localhost}</property>
    </bean>
    
    <!-- MBean server -->



More information about the hornetq-commits mailing list