User: patriot1burke
  Date: 02/04/16 19:44:13

  Modified:    src/main/org/jboss/ejb Container.java
  Log:
  don't set lockmanager to null.  Passivation thread may be trying to access it on an 
undeploy.
  
  Revision  Changes    Path
  1.86      +2 -2      jboss/src/main/org/jboss/ejb/Container.java
  
  Index: Container.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/Container.java,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- Container.java    12 Apr 2002 19:30:41 -0000      1.85
  +++ Container.java    17 Apr 2002 02:44:13 -0000      1.86
  @@ -82,7 +82,7 @@
   * @author <a href="mailto:[EMAIL PROTECTED]";>Scott Stark</a>.
   * @author <a href="[EMAIL PROTECTED]">Bill Burke</a>
   * @author <a href="mailto:[EMAIL PROTECTED]";>David Jencks</a>
  -* @version $Revision: 1.85 $
  +* @version $Revision: 1.86 $
   ** <p><b>Revisions:</b>
   *
   * <p><b>2001/07/26 bill burke:</b>
  @@ -591,7 +591,7 @@
         this.webClassLoader = null;
         this.localClassLoader = null;
         this.ejbModule = null;
  -      this.lockManager = null;
  +      //      this.lockManager = null; Setting this to null causes AbstractCache to 
fail on undeployment
         this.methodPermissionsCache.clear();
      }
   
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to