mirror of
https://github.com/apache/activemq.git
synced 2025-02-18 16:10:45 +00:00
https://issues.apache.org/jira/browse/AMQ-3374 - long kahadb tx - parse long
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1138449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5bcd417f4b
commit
984a9fb1c3
@ -91,7 +91,7 @@ public class Transaction implements Iterable<Page> {
|
|||||||
// List of pages freed in this transaction
|
// List of pages freed in this transaction
|
||||||
private final SequenceSet freeList = new SequenceSet();
|
private final SequenceSet freeList = new SequenceSet();
|
||||||
|
|
||||||
private long maxTransactionSize = Integer.parseInt(System.getProperty("maxKahaDBTxSize", "" + 10485760));
|
private long maxTransactionSize = Long.parseLong(System.getProperty("maxKahaDBTxSize", "" + 10485760));
|
||||||
|
|
||||||
private long size = 0;
|
private long size = 0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user