ionutzpi commented on code in PR #1850:
URL: https://github.com/apache/jackrabbit-oak/pull/1850#discussion_r1837790215
##########
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStoreService.java:
##########
@@ -343,6 +344,7 @@ private void registerNodeStore() throws IOException {
builder.setLeaseSocketTimeout(config.mongoLeaseSocketTimeout());
builder.setMongoDB(uri, db, config.blobCacheSize());
builder.setCollectionCompressionType(config.collectionCompressionType());
+ builder.setPerfloggerInfoMillis(config.perfLoggerInfoMillis());
Review Comment:
Removed this one. I kept it in configureBuilder.
##########
oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStoreServiceConfigurationTest.java:
##########
@@ -239,6 +239,17 @@ public void overrideFullGCExcludePaths() throws Exception {
assertArrayEquals(new String[]{"/foo", "/bar"},
config.fullGCExcludePaths());
}
+ @Test
+ public void perfLoggerInfoMillisTest() throws Exception {
+ addConfigurationEntry(preset, "perfLoggerInfoMillis", 0L);
Review Comment:
Done.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]