Skip to content

Commit dbcdf26

Browse files
committed
wip
1 parent b8cf968 commit dbcdf26

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

core/sail/api/src/main/java/org/eclipse/rdf4j/common/concurrent/locks/ExclusiveReentrantLockManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public ExclusiveReentrantLockManager(boolean trackLocks, int collectionFrequency
5252

5353
lockMonitoring = new LockTracking<>(
5454
true,
55-
"ExclusiveReentrantLockManager-Tracking",
55+
"ExclusiveReentrantLockManager(w/tracking)",
5656
LoggerFactory.getLogger(this.getClass()),
5757
waitToCollect,
5858
Lock.ExtendedSupplier.wrap(this::getExclusiveLockInner, this::tryExclusiveLockInner)
@@ -61,7 +61,7 @@ public ExclusiveReentrantLockManager(boolean trackLocks, int collectionFrequency
6161
} else {
6262
lockMonitoring = new LockCleaner<>(
6363
false,
64-
"ExclusiveReentrantLockManager-Cleaner",
64+
"ExclusiveReentrantLockManager(w/cleaner)",
6565
LoggerFactory.getLogger(this.getClass()),
6666
Lock.ExtendedSupplier.wrap(this::getExclusiveLockInner, this::tryExclusiveLockInner)
6767
);

core/sail/api/src/test/java/org/eclipse/rdf4j/common/concurrent/locks/ExclusiveReentrantLockManagerTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ void stalledTest() throws InterruptedException {
128128

129129
assertThat(memoryAppender.countEventsForLogger(ExclusiveReentrantLockManager.class.getName()))
130130
.isGreaterThanOrEqualTo(1);
131-
memoryAppender.assertContains("is waiting on a possibly stalled lock \"ExclusiveReentrantLockManager\" with id",
131+
memoryAppender.assertContains(
132+
"is waiting on a possibly stalled lock \"ExclusiveReentrantLockManager(w/tracking)\" with id",
132133
Level.INFO);
133134
memoryAppender.assertContains(
134135
"at org.eclipse.rdf4j.common.concurrent.locks.ExclusiveReentrantLockManagerTest.lambda$stalledTest$0(ExclusiveReentrantLockManagerTest.java:",

testsuites/benchmark/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,13 @@
115115
</execution>
116116
</executions>
117117
</plugin>
118+
<plugin>
119+
<groupId>com.github.siom79.japicmp</groupId>
120+
<artifactId>japicmp-maven-plugin</artifactId>
121+
<configuration>
122+
<skip>true</skip>
123+
</configuration>
124+
</plugin>
118125
</plugins>
119126
</build>
120127
</project>

0 commit comments

Comments
 (0)