[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/versioning/transport ...

Ron Sigal ron_sigal at yahoo.com
Fri May 18 22:55:31 EDT 2007


  User: rsigal  
  Date: 07/05/18 22:55:31

  Modified:    src/tests/org/jboss/test/remoting/versioning/transport  Tag:
                        remoting_2_2_0_GA VersionInvokerTestCaseBase.java
  Log:
  JBREM-714: Modified getClientJVMArguments() and getServerJVMArguments() to use "client.check_connection" and "server.check_connection" system properties..
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.10.2  +2 -2      JBossRemoting/src/tests/org/jboss/test/remoting/versioning/transport/VersionInvokerTestCaseBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: VersionInvokerTestCaseBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/versioning/transport/VersionInvokerTestCaseBase.java,v
  retrieving revision 1.1.10.1
  retrieving revision 1.1.10.2
  diff -u -b -r1.1.10.1 -r1.1.10.2
  --- VersionInvokerTestCaseBase.java	9 May 2007 08:25:15 -0000	1.1.10.1
  +++ VersionInvokerTestCaseBase.java	19 May 2007 02:55:31 -0000	1.1.10.2
  @@ -44,7 +44,7 @@
            if (prop != null && !"".equals(prop))
               args = "-Djboss.remoting.version=" + prop;
         }
  -      prop = System.getProperty("remoting.metadata");
  +      prop = System.getProperty("client.check_connection");
         if (prop != null && !"".equals(prop))
         {
            args += " -Dremoting.metadata=socket.check_connection=" + prop;
  @@ -68,7 +68,7 @@
            if (prop != null && !"".equals(prop))
               args = "-Djboss.remoting.version=" + prop;
         }
  -      prop = System.getProperty("remoting.metadata");
  +      prop = System.getProperty("server.check_connection");
         if (prop != null && !"".equals(prop))
         {
            args += " -Dremoting.metadata=socket.check_connection=" + prop;
  
  
  



More information about the jboss-cvs-commits mailing list