[hornetq-commits] JBoss hornetq SVN: r9857 - branches/Branch_New_Paging/src/main/org/hornetq/core/paging/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Nov 8 23:23:27 EST 2010


Author: clebert.suconic at jboss.com
Date: 2010-11-08 23:23:26 -0500 (Mon, 08 Nov 2010)
New Revision: 9857

Modified:
   branches/Branch_New_Paging/src/main/org/hornetq/core/paging/impl/PagingStoreImpl.java
Log:
fix

Modified: branches/Branch_New_Paging/src/main/org/hornetq/core/paging/impl/PagingStoreImpl.java
===================================================================
--- branches/Branch_New_Paging/src/main/org/hornetq/core/paging/impl/PagingStoreImpl.java	2010-11-09 04:14:09 UTC (rev 9856)
+++ branches/Branch_New_Paging/src/main/org/hornetq/core/paging/impl/PagingStoreImpl.java	2010-11-09 04:23:26 UTC (rev 9857)
@@ -972,7 +972,7 @@
    private long[] getQueueIDs(RouteContextList ctx)
    {
       List<org.hornetq.core.server.Queue> durableQueues = ctx.getDurableQueues();
-      List<org.hornetq.core.server.Queue> nonDurableQueues = ctx.getDurableQueues();
+      List<org.hornetq.core.server.Queue> nonDurableQueues = ctx.getNonDurableQueues();
       long ids[] = new long [durableQueues.size() + nonDurableQueues.size()];
       int i = 0;
       



More information about the hornetq-commits mailing list