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 2013/11/21 00:33:27 UTC

[08/18] git commit: ACCUMULO-1908 Add in small sleeps to let ZK information propogate.

ACCUMULO-1908 Add in small sleeps to let ZK information propogate.


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

Branch: refs/heads/master
Commit: 316a84b54cf68cc8051d1971b3123e52c20338ef
Parents: 5221747
Author: Josh Elser <el...@apache.org>
Authored: Tue Nov 19 20:50:54 2013 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Nov 19 20:50:54 2013 -0500

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


http://git-wip-us.apache.org/repos/asf/accumulo/blob/316a84b5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java b/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
index 85f6510..6d44350 100644
--- a/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
+++ b/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
@@ -456,7 +456,9 @@ public class ShellServerTest {
     exec("constraint -l -t !METADATA", true, "MetadataConstraints=1", true);
     exec("createtable c -evc");
     exec("constraint -l -t c", true, "VisibilityConstraint=1", true);
+    Thread.sleep(250);
     exec("constraint -t c -d 1", true, "Removed constraint 1 from table c");
+    Thread.sleep(250);
     exec("constraint -l -t c", true, "VisibilityConstraint=1", false);
     exec("deletetable -f c");
   }