[jboss-cvs] JBossAS SVN: r96515 - in branches/JBPAPP_4_2_0_GA_CP/ejb3/src: test/org/jboss/ejb3/test/ejbthree994/unit and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 18 19:54:34 EST 2009


Author: ron_sigal
Date: 2009-11-18 19:54:34 -0500 (Wed, 18 Nov 2009)
New Revision: 96515

Modified:
   branches/JBPAPP_4_2_0_GA_CP/ejb3/src/resources/test/ejbthree994/ejbthree994-connectors-service.xml
   branches/JBPAPP_4_2_0_GA_CP/ejb3/src/test/org/jboss/ejb3/test/ejbthree994/unit/MultiBindingsTestCase.java
Log:
JBPAPP-2248: Added "invokerDestructionDelay=5000" to the InvokerLocators.

Modified: branches/JBPAPP_4_2_0_GA_CP/ejb3/src/resources/test/ejbthree994/ejbthree994-connectors-service.xml
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/ejb3/src/resources/test/ejbthree994/ejbthree994-connectors-service.xml	2009-11-19 00:48:02 UTC (rev 96514)
+++ branches/JBPAPP_4_2_0_GA_CP/ejb3/src/resources/test/ejbthree994/ejbthree994-connectors-service.xml	2009-11-19 00:54:34 UTC (rev 96515)
@@ -8,7 +8,7 @@
 
    <mbean code="org.jboss.remoting.transport.Connector"
           name="jboss.remoting:type=Connector,name=Ejbthree994Ejb3Connector,handler=ejb3">
-      <attribute name="InvokerLocator">socket://${jboss.bind.address}:3874</attribute>
+      <attribute name="InvokerLocator">socket://${jboss.bind.address}:3874/?invokerDestructionDelay=5000</attribute>
       <attribute name="Configuration">
          <handlers>
             <handler subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>
@@ -18,7 +18,7 @@
    
    <mbean code="org.jboss.remoting.transport.Connector"
           name="jboss.remoting.test:type=Connector,name=Ejbthree994TestEjb3Connector,handler=ejb3">
-      <attribute name="InvokerLocator">socket://${jboss.bind.address}:3875</attribute>
+      <attribute name="InvokerLocator">socket://${jboss.bind.address}:3875/?invokerDestructionDelay=5000</attribute>
       <attribute name="Configuration">
          <handlers>
             <handler subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>

Modified: branches/JBPAPP_4_2_0_GA_CP/ejb3/src/test/org/jboss/ejb3/test/ejbthree994/unit/MultiBindingsTestCase.java
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/ejb3/src/test/org/jboss/ejb3/test/ejbthree994/unit/MultiBindingsTestCase.java	2009-11-19 00:48:02 UTC (rev 96514)
+++ branches/JBPAPP_4_2_0_GA_CP/ejb3/src/test/org/jboss/ejb3/test/ejbthree994/unit/MultiBindingsTestCase.java	2009-11-19 00:54:34 UTC (rev 96515)
@@ -73,7 +73,7 @@
          assertEquals(actual, "*** 123 ***");
          
          String proxyUri = getProxyUri(bean);
-         assertEquals(proxyUri, "socket://" + getBindingName() + ":3873/");
+         assertEquals(proxyUri, "socket://" + getBindingName() + ":3873/?invokerDestructionDelay=5000");
       }
 
       {
@@ -82,7 +82,7 @@
          assertEquals(actual, "*** 456 ***");
          
          String proxyUri = getProxyUri(bean);
-         assertEquals(proxyUri, "socket://" + getBindingName() + ":3874/");
+         assertEquals(proxyUri, "socket://" + getBindingName() + ":3874/?invokerDestructionDelay=5000");
       }
       
       {
@@ -91,7 +91,7 @@
          assertEquals(actual, "*** 789 ***");
          
          String proxyUri = getProxyUri(bean);
-         assertEquals(proxyUri, "socket://" + getBindingName() + ":3875/");
+         assertEquals(proxyUri, "socket://" + getBindingName() + ":3875/?invokerDestructionDelay=5000");
       }
    }
    




More information about the jboss-cvs-commits mailing list