This is an automated email from the ASF dual-hosted git repository.

jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 91084f455fe Fix a typo in MailboxContentObserver where mailbox should 
be volatile (#16871)
91084f455fe is described below

commit 91084f455fe1db7d907ec38f11c8d0c0c7768471
Author: Xiaotian (Jackie) Jiang <[email protected]>
AuthorDate: Mon Sep 22 17:37:42 2025 -0700

    Fix a typo in MailboxContentObserver where mailbox should be volatile 
(#16871)
---
 .../apache/pinot/query/mailbox/channel/MailboxContentObserver.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/pinot-query-runtime/src/main/java/org/apache/pinot/query/mailbox/channel/MailboxContentObserver.java
 
b/pinot-query-runtime/src/main/java/org/apache/pinot/query/mailbox/channel/MailboxContentObserver.java
index d2ece46f73e..4006fc275a1 100644
--- 
a/pinot-query-runtime/src/main/java/org/apache/pinot/query/mailbox/channel/MailboxContentObserver.java
+++ 
b/pinot-query-runtime/src/main/java/org/apache/pinot/query/mailbox/channel/MailboxContentObserver.java
@@ -48,9 +48,9 @@ public class MailboxContentObserver implements 
StreamObserver<MailboxContent> {
 
   private final MailboxService _mailboxService;
   private final StreamObserver<MailboxStatus> _responseObserver;
-
   private final List<ByteBuffer> _mailboxBuffers;
-  private transient ReceivingMailbox _mailbox;
+
+  private volatile ReceivingMailbox _mailbox;
 
   public MailboxContentObserver(
     MailboxService mailboxService, String mailboxId, 
StreamObserver<MailboxStatus> responseObserver) {


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

Reply via email to