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 f503f1f Fixes #2209 use correct extent in IT f503f1f is described below commit f503f1f6e66fe5657f305e18a65d07852ba035e0 Author: Keith Turner <ktur...@apache.org> AuthorDate: Tue Aug 3 15:33:35 2021 -0400 Fixes #2209 use correct extent in IT --- .../main/java/org/apache/accumulo/test/functional/SplitRecoveryIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/main/java/org/apache/accumulo/test/functional/SplitRecoveryIT.java b/test/src/main/java/org/apache/accumulo/test/functional/SplitRecoveryIT.java index e8e2017..7a3ae75 100644 --- a/test/src/main/java/org/apache/accumulo/test/functional/SplitRecoveryIT.java +++ b/test/src/main/java/org/apache/accumulo/test/functional/SplitRecoveryIT.java @@ -215,7 +215,7 @@ public class SplitRecoveryIT extends ConfigurableMacBase { tabletMutator.mutate(); if (steps >= 1) { - Map<Long,List<TabletFile>> bulkFiles = getBulkFilesLoaded(context, extent); + Map<Long,List<TabletFile>> bulkFiles = getBulkFilesLoaded(context, high); ManagerMetadataUtil.addNewTablet(context, low, "lowDir", instance, lowDatafileSizes, bulkFiles, new MetadataTime(0, TimeType.LOGICAL), -1L, -1L, zl);