EdColeman commented on code in PR #3202:
URL: https://github.com/apache/accumulo/pull/3202#discussion_r1117121719
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/ConditionalWriterImpl.java:
##########
@@ -679,7 +679,7 @@ private void invalidateSession(SessionID sessionId,
HostAndPort location)
LockID lid = new LockID(context.getZooKeeperRoot() + Constants.ZTSERVERS,
sessionId.lockId);
- while (true) {
+ while (true && !Thread.currentThread().isInterrupted()) {
Review Comment:
See 60f14d86ef8b - the other option would be to remove the interrupt flag
check and ignore as done before.
--
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]