default the usageManager to 64Mb rather than the measily 20m :)

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@518260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-03-14 18:37:31 +00:00
parent 4443d32e5d
commit 7162f01b75
1 changed files with 1 additions and 1 deletions

View File

@ -623,7 +623,7 @@ public class BrokerService implements Service, Serializable {
public UsageManager getMemoryManager() {
if (usageManager == null) {
usageManager = new UsageManager("Main");
usageManager.setLimit(1024 * 1024 * 20); // Default to 20 Meg
usageManager.setLimit(1024 * 1024 * 64); // Default to 64 Meg
// limit
}
return usageManager;