dcapwell commented on code in PR #3656:
URL: https://github.com/apache/cassandra/pull/3656#discussion_r1828460583


##########
src/java/org/apache/cassandra/tcm/PaxosBackedProcessor.java:
##########
@@ -136,7 +136,7 @@ public ClusterMetadata fetchLogAndWait(Epoch waitFor, 
Retry.Deadline retryPolicy
             while (iter.hasNext())
             {
                 FetchLogRequest request = iter.next();
-                if (request.condition.awaitUninterruptibly(Math.max(0, 
nextTimeout - Clock.Global.nanoTime()), TimeUnit.NANOSECONDS) &&
+                if 
(request.condition.awaitThrowUncheckedOnInterrupt(Math.max(0, nextTimeout - 
Clock.Global.nanoTime()), TimeUnit.NANOSECONDS) &&

Review Comment:
   this was getting called in `MiscStage` which would block shutdown threads 
from exiting...



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to