dblevins    2005/08/25 00:39:00

  Modified:    modules/core/src/java/org/openejb/core DeploymentInfo.java
  Log:

  Forgot to mark local homes as a local interface.  Really need to add them to 
the test suite....
  
  Revision  Changes    Path
  1.5       +3 -3      
openejb1/modules/core/src/java/org/openejb/core/DeploymentInfo.java
  
  Index: DeploymentInfo.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/DeploymentInfo.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DeploymentInfo.java       8 Aug 2005 00:48:07 -0000       1.4
  +++ DeploymentInfo.java       25 Aug 2005 04:39:00 -0000      1.5
  @@ -745,7 +745,7 @@
               handler = new EntityEjbHomeHandler((RpcContainer)container, 
null, getDeploymentID());
               break;
           }
  -        handler.setIntraVmCopyMode(false);
  +        handler.setLocal(true);
           Object proxy = null;
           try{
               Class[] interfaces = new Class[]{ this.getLocalHomeInterface(), 
org.openejb.core.ivm.IntraVmProxy.class };
  
  
  

Reply via email to