mirror of https://github.com/apache/activemq.git
fix AMQ4221Test failure on low disk space - use warn level when resetting to available. Test checked log for error messages
This commit is contained in:
parent
bedb207883
commit
189a75afdc
|
@ -1979,7 +1979,7 @@ public class BrokerService implements Service {
|
||||||
|
|
||||||
if (memLimit > jvmLimit) {
|
if (memLimit > jvmLimit) {
|
||||||
usage.getMemoryUsage().setPercentOfJvmHeap(70);
|
usage.getMemoryUsage().setPercentOfJvmHeap(70);
|
||||||
LOG.error("Memory Usage for the Broker (" + memLimit / (1024 * 1024) +
|
LOG.warn("Memory Usage for the Broker (" + memLimit / (1024 * 1024) +
|
||||||
" mb) is more than the maximum available for the JVM: " +
|
" mb) is more than the maximum available for the JVM: " +
|
||||||
jvmLimit / (1024 * 1024) + " mb - resetting to 70% of maximum available: " + (usage.getMemoryUsage().getLimit() / (1024 * 1024)) + " mb");
|
jvmLimit / (1024 * 1024) + " mb - resetting to 70% of maximum available: " + (usage.getMemoryUsage().getLimit() / (1024 * 1024)) + " mb");
|
||||||
}
|
}
|
||||||
|
@ -2041,7 +2041,7 @@ public class BrokerService implements Service {
|
||||||
}
|
}
|
||||||
long dirFreeSpace = tmpDir.getUsableSpace();
|
long dirFreeSpace = tmpDir.getUsableSpace();
|
||||||
if (storeLimit > dirFreeSpace) {
|
if (storeLimit > dirFreeSpace) {
|
||||||
LOG.error("Temporary Store limit is " + storeLimit / (1024 * 1024) +
|
LOG.warn("Temporary Store limit is " + storeLimit / (1024 * 1024) +
|
||||||
" mb, whilst the temporary data directory: " + tmpDirPath +
|
" mb, whilst the temporary data directory: " + tmpDirPath +
|
||||||
" only has " + dirFreeSpace / (1024 * 1024) + " mb of usable space - resetting to maximum available " +
|
" only has " + dirFreeSpace / (1024 * 1024) + " mb of usable space - resetting to maximum available " +
|
||||||
dirFreeSpace / (1024 * 1024) + " mb.");
|
dirFreeSpace / (1024 * 1024) + " mb.");
|
||||||
|
|
Loading…
Reference in New Issue