mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@686257 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c8bd57cdc7
commit
15fb25d653
|
@ -54,7 +54,7 @@ public class MBeanTest extends EmbeddedBrokerTestSupport {
|
||||||
protected Connection connection;
|
protected Connection connection;
|
||||||
protected boolean transacted;
|
protected boolean transacted;
|
||||||
protected int authMode = Session.AUTO_ACKNOWLEDGE;
|
protected int authMode = Session.AUTO_ACKNOWLEDGE;
|
||||||
protected static final int MESSAGE_COUNT = 2*BaseDestination.DEFAULT_PAGE_SIZE;
|
protected static final int MESSAGE_COUNT = 2*BaseDestination.MAX_PAGE_SIZE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When you run this test case from the command line it will pause before
|
* When you run this test case from the command line it will pause before
|
||||||
|
|
|
@ -310,5 +310,13 @@ public class SubscriptionAddRemoveQueueTest extends TestCase {
|
||||||
public void removeDestination(Destination destination) {
|
public void removeDestination(Destination destination) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.activemq.broker.region.Subscription#countBeforeFull()
|
||||||
|
*/
|
||||||
|
public int countBeforeFull() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return 10;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue