gortiz commented on code in PR #16915:
URL: https://github.com/apache/pinot/pull/16915#discussion_r2409804119


##########
pinot-query-runtime/src/main/java/org/apache/pinot/query/mailbox/InMemorySendingMailbox.java:
##########
@@ -68,7 +68,11 @@ public void send(MseBlock.Data data)
   @Override
   public void send(MseBlock.Eos block, List<DataBuffer> serializedStats)
       throws IOException, TimeoutException {
-    sendPrivate(block, serializedStats);
+    try {
+      sendPrivate(block, serializedStats);
+    } finally {
+      _isTerminated = true;

Review Comment:
   Good catch. I'll change it



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