This is an automated email from the ASF dual-hosted git repository.
DomGarguilo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git
The following commit(s) were added to refs/heads/main by this push:
new cf85775 Add new dry run flag to mergomatic method call (#310)
cf85775 is described below
commit cf85775d98e689880926a22dbcefaeedfea132c0
Author: Dom G. <[email protected]>
AuthorDate: Thu Jun 25 18:18:52 2026 -0400
Add new dry run flag to mergomatic method call (#310)
* added a `false` param for the newly added dry run argument
---
src/main/java/org/apache/accumulo/testing/randomwalk/shard/Merge.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/accumulo/testing/randomwalk/shard/Merge.java
b/src/main/java/org/apache/accumulo/testing/randomwalk/shard/Merge.java
index 6cd69f4..2e8f7ce 100644
--- a/src/main/java/org/apache/accumulo/testing/randomwalk/shard/Merge.java
+++ b/src/main/java/org/apache/accumulo/testing/randomwalk/shard/Merge.java
@@ -39,7 +39,8 @@ public class Merge extends Test {
log.debug("merging " + indexTableName);
env.getAccumuloClient().tableOperations().merge(indexTableName, null,
null);
org.apache.accumulo.core.util.Merge merge = new
org.apache.accumulo.core.util.Merge();
- merge.mergomatic(env.getAccumuloClient(), indexTableName, null, null, 256
* 1024 * 1024, true);
+ merge.mergomatic(env.getAccumuloClient(), indexTableName, null, null, 256
* 1024 * 1024, true,
+ false);
splits =
env.getAccumuloClient().tableOperations().listSplits(indexTableName);
if (splits.size() > splitSet.size()) {
// throw an exception so that test will die and no further changes to
table will occur...