Skip to content

Commit

Permalink
remove disable-rocksdb-stats
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Dec 25, 2024
1 parent d27607d commit 2603ccc
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public Process startValidator(Node node, String myGlobalConfig) {
"--block-ttl", node.getValidatorBlockTtl().toString(), // blocks will be gc'd after this time (in seconds), default=7*86400
"--archive-ttl", node.getValidatorArchiveTtl().toString(), // archived blocks will be deleted after this time (in seconds), default 365*86400
"--key-proof-ttl", node.getValidatorKeyProofTtl().toString(), // 10 years key blocks will be deleted after this time (in seconds), default 365*86400*10
"--disable-rocksdb-stats", "true",
"--celldb-preload-all", "false"
);
node.setNodeProcess(validator.getLeft());
Expand All @@ -70,7 +69,6 @@ public Pair<Process, Future<String>> startValidatorWithoutParams(Node node, Stri
"--db", node.getTonDbDir(),
"--logname", node.getTonLogDir() + MyLocalTonUtils.toUtcNoSpace(System.currentTimeMillis()),
"--session-logs", "",
"--disable-rocksdb-stats", "true",
"--celldb-preload-all", "false",
"--ip", node.getPublicIp() + ":" + node.getPublicPort());

Expand Down

0 comments on commit 2603ccc

Please sign in to comment.