You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/08/25 21:34:21 UTC

[3/8] accumulo git commit: ACCUMULO-3973 Catch AssertionError in ShellServerIT.addauths in addition to Exception.

ACCUMULO-3973 Catch AssertionError in ShellServerIT.addauths in addition to Exception.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/bec493ae
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/bec493ae
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/bec493ae

Branch: refs/heads/master
Commit: bec493ae43c3e7f886f14d634f8f47b91cbe4f54
Parents: c3da293
Author: Josh Elser <el...@apache.org>
Authored: Tue Aug 25 14:17:40 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Tue Aug 25 14:17:40 2015 -0400

----------------------------------------------------------------------
 test/src/test/java/org/apache/accumulo/test/ShellServerIT.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/bec493ae/test/src/test/java/org/apache/accumulo/test/ShellServerIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/ShellServerIT.java b/test/src/test/java/org/apache/accumulo/test/ShellServerIT.java
index 4b233d4..ee287ee 100644
--- a/test/src/test/java/org/apache/accumulo/test/ShellServerIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/ShellServerIT.java
@@ -636,6 +636,8 @@ public class ShellServerIT extends SharedMiniClusterIT {
         passed = true;
       } catch (Exception e) {
         UtilWaitThread.sleep(300);
+      } catch (AssertionError e) {
+        UtilWaitThread.sleep(300);
       }
     }
     assertTrue("Could not successfully see updated authoriations", passed);