jasonk000 commented on code in PR #12099:
URL: https://github.com/apache/druid/pull/12099#discussion_r862508639
##########
indexing-service/src/main/java/org/apache/druid/indexing/overlord/TaskQueue.java:
##########
@@ -93,7 +100,8 @@
private final ServiceEmitter emitter;
private final ReentrantLock giant = new ReentrantLock(true);
- private final Condition managementMayBeNecessary = giant.newCondition();
+ @SuppressWarnings("MismatchedQueryAndUpdateOfCollection")
+ private final BlockingQueue<Object> managementMayBeNecessary = new
ArrayBlockingQueue<>(8);
Review Comment:
No particular reason, I'll swap it to one.
--
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]