This is an automated email from the ASF dual-hosted git repository. mmiller 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 618cac4 Disable IT that fails on Standalone cluster. Closes #1084 618cac4 is described below commit 618cac44ab518ce2edb12f83168ba239005137b7 Author: Mike Miller <mmil...@apache.org> AuthorDate: Thu Oct 1 14:12:57 2020 -0400 Disable IT that fails on Standalone cluster. Closes #1084 * Set SessionBlockVerifyIT to MINI only --- .../org/apache/accumulo/test/functional/SessionBlockVerifyIT.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/src/main/java/org/apache/accumulo/test/functional/SessionBlockVerifyIT.java b/test/src/main/java/org/apache/accumulo/test/functional/SessionBlockVerifyIT.java index af11b54..e643f46 100644 --- a/test/src/main/java/org/apache/accumulo/test/functional/SessionBlockVerifyIT.java +++ b/test/src/main/java/org/apache/accumulo/test/functional/SessionBlockVerifyIT.java @@ -60,6 +60,11 @@ public class SessionBlockVerifyIT extends ScanSessionTimeOutIT { private static final Logger log = LoggerFactory.getLogger(SessionBlockVerifyIT.class); @Override + public boolean canRunTest(ClusterType type) { + return type == ClusterType.MINI; + } + + @Override public void configureMiniCluster(MiniAccumuloConfigImpl cfg, Configuration hadoopCoreSite) { Map<String,String> siteConfig = cfg.getSiteConfig(); cfg.setNumTservers(1);