[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/loader/deadlock ...

Manik Surtani msurtani at jboss.com
Wed Sep 6 11:30:57 EDT 2006


  User: msurtani
  Date: 06/09/06 11:30:57

  Modified:    tests/functional/org/jboss/cache/loader/deadlock 
                        ConcurrentCreationDeadlockTest.java
  Log:
  Removed TreeCache dependency on ServiceMBeanSupport
  
  Revision  Changes    Path
  1.6       +5 -5      JBossCache/tests/functional/org/jboss/cache/loader/deadlock/ConcurrentCreationDeadlockTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConcurrentCreationDeadlockTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/loader/deadlock/ConcurrentCreationDeadlockTest.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- ConcurrentCreationDeadlockTest.java	5 Sep 2006 13:37:28 -0000	1.5
  +++ ConcurrentCreationDeadlockTest.java	6 Sep 2006 15:30:57 -0000	1.6
  @@ -141,7 +141,7 @@
      {
         super.tearDown();
         DummyTransactionManager.destroy();
  -      m_cache.stopService();
  +      m_cache.stop();
         m_cache = null;
         if (m_contextFactory != null)
         {
  @@ -166,8 +166,8 @@
         {
            m_cache.getConfiguration().setCacheLoaderConfiguration(getSingleCacheLoaderConfig("", cacheLoaderClass, "", false, false, false));
         }
  -      m_cache.createService();
  -      m_cache.startService();
  +      m_cache.create();
  +      m_cache.start();
      }
   
      /**
  @@ -397,7 +397,7 @@
       *
       * @author Marian Nikolov
       * @author $Author: msurtani $
  -    * @version $Date: 2006/09/05 13:37:28 $
  +    * @version $Date: 2006/09/06 15:30:57 $
       */
      private class Worker extends Thread
      {
  
  
  



More information about the jboss-cvs-commits mailing list