[hornetq-commits] JBoss hornetq SVN: r9901 - branches/Branch_New_Paging_preMerge/src/main/org/hornetq/core/server/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Nov 16 19:19:59 EST 2010


Author: clebert.suconic at jboss.com
Date: 2010-11-16 19:19:59 -0500 (Tue, 16 Nov 2010)
New Revision: 9901

Modified:
   branches/Branch_New_Paging_preMerge/src/main/org/hornetq/core/server/impl/LastValueQueue.java
Log:
fixing tests

Modified: branches/Branch_New_Paging_preMerge/src/main/org/hornetq/core/server/impl/LastValueQueue.java
===================================================================
--- branches/Branch_New_Paging_preMerge/src/main/org/hornetq/core/server/impl/LastValueQueue.java	2010-11-16 23:58:58 UTC (rev 9900)
+++ branches/Branch_New_Paging_preMerge/src/main/org/hornetq/core/server/impl/LastValueQueue.java	2010-11-17 00:19:59 UTC (rev 9901)
@@ -240,7 +240,7 @@
        */
       public void acknowledge() throws Exception
       {
-         ref.acknowledge();
+         ref.getQueue().acknowledge(this);
       }
 
       /* (non-Javadoc)
@@ -248,7 +248,7 @@
        */
       public void acknowledge(Transaction tx) throws Exception
       {
-         ref.acknowledge(tx);
+         ref.getQueue().acknowledge(tx, this);
       }
    }
 }



More information about the hornetq-commits mailing list