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 25e32a01d4 Fix table names vars from prior change to 
TabletManagementIteratorIT (#6256)
25e32a01d4 is described below

commit 25e32a01d4e599a5bb034f20730955ae6fe62a42
Author: Dave Marion <[email protected]>
AuthorDate: Thu Mar 26 13:17:20 2026 -0400

    Fix table names vars from prior change to TabletManagementIteratorIT (#6256)
---
 .../accumulo/test/functional/TabletManagementIteratorIT.java       | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git 
a/test/src/main/java/org/apache/accumulo/test/functional/TabletManagementIteratorIT.java
 
b/test/src/main/java/org/apache/accumulo/test/functional/TabletManagementIteratorIT.java
index 05155bfdab..90a184f9e4 100644
--- 
a/test/src/main/java/org/apache/accumulo/test/functional/TabletManagementIteratorIT.java
+++ 
b/test/src/main/java/org/apache/accumulo/test/functional/TabletManagementIteratorIT.java
@@ -339,8 +339,7 @@ public class TabletManagementIteratorIT extends 
AccumuloClusterHarness {
           findTabletsNeedingAttention(client, metaCopy6, tabletMgmtParams, 
false),
           "No tablets should need attention");
       // Lower the split threshold for the table, should cause the files added 
to need attention.
-      client.tableOperations().setProperty(tables[3], 
Property.TABLE_SPLIT_THRESHOLD.getKey(),
-          "1K");
+      client.tableOperations().setProperty(t4, 
Property.TABLE_SPLIT_THRESHOLD.getKey(), "1K");
       expected = Map.of(prevR4, Set.of(NEEDS_SPLITTING));
       assertEquals(expected,
           findTabletsNeedingAttention(client, metaCopy6, tabletMgmtParams, 
false),
@@ -348,7 +347,7 @@ public class TabletManagementIteratorIT extends 
AccumuloClusterHarness {
 
       // Take the table offline which should prevent the tablet from being 
returned for needing to
       // split
-      client.tableOperations().offline(tables[3], false);
+      client.tableOperations().offline(t4, false);
       tabletMgmtParams = createParameters(client);
       expected = Map.of();
       assertEquals(expected,
@@ -357,7 +356,7 @@ public class TabletManagementIteratorIT extends 
AccumuloClusterHarness {
 
       // Bring the table back online to re-confirm that it needs splitting. 
Introduce some errors
       // into the metadata table.
-      client.tableOperations().online(tables[3]);
+      client.tableOperations().online(t4);
       tabletMgmtParams = createParameters(client);
       expected = Map.of(prevR4, Set.of(NEEDS_SPLITTING));
       assertEquals(expected,

Reply via email to