mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-4094 - revert inadvertent mod/regression to BTreeNode, multiple iterations of the test verify it is unnecessary and seems to be the root cause of some instability
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1398770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
76153ff245
commit
47ee52e5d3
|
@ -332,10 +332,11 @@ public final class BTreeNode<Key,Value> {
|
||||||
keys = child.keys;
|
keys = child.keys;
|
||||||
children = child.children;
|
children = child.children;
|
||||||
values = child.values;
|
values = child.values;
|
||||||
}
|
|
||||||
// free up the page..
|
// free up the page..
|
||||||
tx.free(child.getPage());
|
tx.free(child.getPage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
index.storeNode(tx, this, true);
|
index.storeNode(tx, this, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue