You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2018/03/29 20:58:11 UTC

[accumulo] branch master updated: ACCUMULO-3331 Fix NPE bug in SplitRecoveryIT

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

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 2de1f90  ACCUMULO-3331 Fix NPE bug in SplitRecoveryIT
2de1f90 is described below

commit 2de1f9028424d4c74415ffb95ab396c3a4a26881
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Thu Mar 29 16:56:08 2018 -0400

    ACCUMULO-3331 Fix NPE bug in SplitRecoveryIT
    
    Fix NPE in test due to previous Objects.requireNonNull check added to
    TabletServer.
---
 .../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 99d9def..6865f62 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
@@ -184,7 +184,7 @@ public class SplitRecoveryIT extends ConfigurableMacBase {
       MetadataTableUtil.finishSplit(high, highDatafileSizes, highDatafilesToRemove, context, zl);
     }
 
-    TabletServer.verifyTabletInformation(context, high, instance, null, "127.0.0.1:0", zl);
+    TabletServer.verifyTabletInformation(context, high, instance, new TreeMap<>(), "127.0.0.1:0", zl);
 
     if (steps >= 1) {
       ensureTabletHasNoUnexpectedMetadataEntries(context, low, lowDatafileSizes);

-- 
To stop receiving notification emails like this one, please contact
ctubbsii@apache.org.