Skip to content

Commit 77af802

Browse files
Daniel IancuJoscorbe
authored andcommitted
OAK-11564 oak-run FullGC leaves background threads running
1 parent 301a996 commit 77af802

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

oak-run/src/test/java/org/apache/jackrabbit/oak/run/RevisionsCommandCustomBlobStoreTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void before() {
5252

5353
@Test
5454
public void info() throws Exception {
55-
RevisionsCommand cmd = new RevisionsCommand();
55+
RevisionsCommand cmd = new RevisionsCommand(false);
5656
cmd.execute(
5757
MongoUtils.URL,
5858
"info"
@@ -61,7 +61,7 @@ public void info() throws Exception {
6161

6262
@Test
6363
public void collect() throws Exception {
64-
RevisionsCommand cmd = new RevisionsCommand();
64+
RevisionsCommand cmd = new RevisionsCommand(false);
6565
cmd.execute(
6666
MongoUtils.URL,
6767
"collect"
@@ -70,7 +70,7 @@ public void collect() throws Exception {
7070

7171
@Test
7272
public void reset() throws Exception {
73-
RevisionsCommand cmd = new RevisionsCommand();
73+
RevisionsCommand cmd = new RevisionsCommand(false);
7474
cmd.execute(
7575
MongoUtils.URL,
7676
"reset"
@@ -81,7 +81,7 @@ public void reset() throws Exception {
8181
public void sweep() throws Exception {
8282
int clusterId = ns.getClusterId();
8383
ns.dispose();
84-
RevisionsCommand cmd = new RevisionsCommand();
84+
RevisionsCommand cmd = new RevisionsCommand(false);
8585
cmd.execute(
8686
"--clusterId",
8787
String.valueOf(clusterId),

0 commit comments

Comments
 (0)