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

krathbun 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 1d151ece04 fix build failure
1d151ece04 is described below

commit 1d151ece04a9b50598f77e31a4c04cc18760d742
Author: Kevin Rathbun <kevinrr...@gmail.com>
AuthorDate: Fri Apr 25 10:06:26 2025 -0400

    fix build failure
---
 .../apache/accumulo/test/functional/MemoryConsumingCompactor.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/test/src/main/java/org/apache/accumulo/test/functional/MemoryConsumingCompactor.java
 
b/test/src/main/java/org/apache/accumulo/test/functional/MemoryConsumingCompactor.java
index 9b350f82d5..03a6697f70 100644
--- 
a/test/src/main/java/org/apache/accumulo/test/functional/MemoryConsumingCompactor.java
+++ 
b/test/src/main/java/org/apache/accumulo/test/functional/MemoryConsumingCompactor.java
@@ -30,7 +30,7 @@ import org.apache.accumulo.core.data.Key;
 import org.apache.accumulo.core.data.Value;
 import org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope;
 import org.apache.accumulo.core.iterators.SortedKeyValueIterator;
-import org.apache.accumulo.core.metadata.AccumuloTable;
+import org.apache.accumulo.core.metadata.SystemTables;
 import org.apache.accumulo.core.securityImpl.thrift.TCredentials;
 import org.apache.accumulo.core.tabletserver.thrift.TExternalCompactionJob;
 import org.apache.accumulo.server.iterators.TabletIteratorEnvironment;
@@ -68,8 +68,8 @@ public class MemoryConsumingCompactor extends Compactor {
       MemoryConsumingIterator iter = new MemoryConsumingIterator();
       iter.init((SortedKeyValueIterator<Key,Value>) null, Map.of(),
           new TabletIteratorEnvironment(getContext(), IteratorScope.scan,
-              
getContext().getTableConfiguration(AccumuloTable.METADATA.tableId()),
-              AccumuloTable.METADATA.tableId()));
+              
getContext().getTableConfiguration(SystemTables.METADATA.tableId()),
+              SystemTables.METADATA.tableId()));
       iter.consume();
     } catch (IOException e) {
       throw new TException("Error consuming memory", e);

Reply via email to