This is an automated email from the ASF dual-hosted git repository.
kturner 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 861d28b64b improves suspension IT (#4550)
861d28b64b is described below
commit 861d28b64ba80b82300306df148ea3f969e99e6d
Author: Keith Turner <[email protected]>
AuthorDate: Fri May 10 18:18:08 2024 -0400
improves suspension IT (#4550)
---
.../main/java/org/apache/accumulo/test/manager/SuspendedTabletsIT.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/test/src/main/java/org/apache/accumulo/test/manager/SuspendedTabletsIT.java
b/test/src/main/java/org/apache/accumulo/test/manager/SuspendedTabletsIT.java
index 8ebb75378b..c32cd927c0 100644
---
a/test/src/main/java/org/apache/accumulo/test/manager/SuspendedTabletsIT.java
+++
b/test/src/main/java/org/apache/accumulo/test/manager/SuspendedTabletsIT.java
@@ -292,6 +292,9 @@ public class SuspendedTabletsIT extends ConfigurableMacBase
{
Thread.sleep(1000);
ds = TabletLocations.retrieve(ctx, tableName);
}
+
+ // Ensure all suspension markers in the metadata table were cleared.
+ assertTrue(ds.suspended.isEmpty());
} else {
throw new IllegalStateException("Unknown action " + action);
}