This is an automated email from the ASF dual-hosted git repository. daim pushed a commit to branch OAK-10199 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 4e840d4e30230325f6634f1c62323fc5840027a3 Author: Stefan Egli <[email protected]> AuthorDate: Thu Apr 20 18:38:45 2023 +0200 OAK-10199 : disable the detailGc in tearDown to avoid side-effects --- .../java/org/apache/jackrabbit/oak/plugins/document/VersionGCTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGCTest.java b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGCTest.java index 1bd81ce89c..445e7c4275 100644 --- a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGCTest.java +++ b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGCTest.java @@ -95,6 +95,7 @@ public class VersionGCTest { @After public void tearDown() throws Exception { + DetailGCHelper.disableDetailGC(ns); execService.shutdown(); execService.awaitTermination(1, MINUTES); }
