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

dsmiley pushed a commit to branch branch_10x
in repository https://gitbox.apache.org/repos/asf/solr.git

commit a7ef9085ce5c252315c3e38141c7cbd777486a03
Author: David Smiley <[email protected]>
AuthorDate: Wed Jun 3 00:24:37 2026 -0400

    JavaBinCodec: fix self-suppression risk (#4489)
    
    (cherry picked from commit ffd773b8dcb778407dd34aece4cab7322f85dd4b)
---
 solr/solrj/src/java/org/apache/solr/common/util/JavaBinCodec.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/solr/solrj/src/java/org/apache/solr/common/util/JavaBinCodec.java 
b/solr/solrj/src/java/org/apache/solr/common/util/JavaBinCodec.java
index 9cd5171f125..dc47f5aa67d 100644
--- a/solr/solrj/src/java/org/apache/solr/common/util/JavaBinCodec.java
+++ b/solr/solrj/src/java/org/apache/solr/common/util/JavaBinCodec.java
@@ -1481,7 +1481,10 @@ public class JavaBinCodec implements PushWriter {
 
   @Override
   public void close() throws IOException {
-    if (daos != null) {
+    // marshal() already flushes in its own finally block, so skip the 
redundant flush.
+    // Flushing again after a marshal failure would re-throw the same 
exception from the broken
+    // stream, causing "Self-suppression not permitted" in the caller's 
try-with-resources.
+    if (daos != null && !alreadyMarshalled) {
       daos.flushBuffer();
     }
   }

Reply via email to