dlmarion commented on code in PR #5169:
URL: https://github.com/apache/accumulo/pull/5169#discussion_r1886757615
##########
server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/MinorCompactor.java:
##########
@@ -93,7 +94,18 @@ public CompactionStats call() {
try {
do {
try {
- CompactionStats ret = super.call();
+ CompactionStats ret = null;
+ try {
+ ret = super.call();
+ } catch (Exception e) {
+ if (tabletServer.getLock() == null ||
!tabletServer.getLock().verifyLockAtSource()) {
Review Comment:
Updated in 1d9e34f
--
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]