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

dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 9860d73963 Fixed Gatherer, causing SummaryIT to fail (#6448)
9860d73963 is described below

commit 9860d739638c3e5b14ad7356280232cf5720c7db
Author: Dave Marion <[email protected]>
AuthorDate: Mon Jun 29 07:38:47 2026 -0400

    Fixed Gatherer, causing SummaryIT to fail (#6448)
    
    Gatherer changed in #6430 causing SummaryIT to start failing.
---
 core/src/main/java/org/apache/accumulo/core/summary/Gatherer.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/summary/Gatherer.java 
b/core/src/main/java/org/apache/accumulo/core/summary/Gatherer.java
index 4101aca234..d26b80f761 100644
--- a/core/src/main/java/org/apache/accumulo/core/summary/Gatherer.java
+++ b/core/src/main/java/org/apache/accumulo/core/summary/Gatherer.java
@@ -436,8 +436,8 @@ public class Gatherer {
       Map<String,List<TRowRange>> files, BlockCache summaryCache, BlockCache 
indexCache,
       Cache<String,Long> fileLenCache, ExecutorService srp) {
     Function<TRowRange,RowRange> fromThrift = tRowRange -> {
-      Text lowerBound = 
ByteBufferUtil.toText(request.getBounds().bufferForStartRow());
-      Text upperBound = 
ByteBufferUtil.toText(request.getBounds().bufferForEndRow());
+      Text lowerBound = ByteBufferUtil.toText(tRowRange.bufferForStartRow());
+      Text upperBound = ByteBufferUtil.toText(tRowRange.bufferForEndRow());
       return RowRange.range(lowerBound, false, upperBound, true);
     };
     List<CompletableFuture<SummaryCollection>> futures = new ArrayList<>();

Reply via email to