mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-3316 - Memory leak in ConnectionStateTracker with MessagePull objects. Patch applied with thanks, good catch\!
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1102018 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
717bca1a40
commit
a1c19c5e49
|
@ -78,6 +78,8 @@ public class ConnectionStateTracker extends CommandVisitorAdapter {
|
||||||
if (result) {
|
if (result) {
|
||||||
if (eldest.getValue() instanceof Message) {
|
if (eldest.getValue() instanceof Message) {
|
||||||
currentCacheSize -= ((Message)eldest.getValue()).getSize();
|
currentCacheSize -= ((Message)eldest.getValue()).getSize();
|
||||||
|
} else if (eldest.getValue() instance of MessagePull) {
|
||||||
|
currentCacheSize -= 400;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in New Issue