mirror of https://github.com/apache/activemq.git
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:
parent
4443d32e5d
commit
7162f01b75
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue