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 4101aca234b..d26b80f7613 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 Future processFiles(FileSystemResolver volMgr, Map> files, BlockCache summaryCache, BlockCache indexCache, Cache fileLenCache, ExecutorService srp) { Function 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> futures = new ArrayList<>();