milleruntime commented on a change in pull request #2235:
URL: https://github.com/apache/accumulo/pull/2235#discussion_r722510497
##########
File path:
server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableImpl.java
##########
@@ -739,11 +745,25 @@ private void checkifChopComplete(Set<StoredTabletFile>
allFiles) {
boolean completed;
synchronized (this) {
+ if (closed) {
+ // if closed, do not attempt to transition to the MARKING state
+ return;
+ }
+ // when this returns true it means we transitioned to the MARKING state
Review comment:
Sorry, nevermind this is calling the other method.
--
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]