Updated Branches: refs/heads/1.5.1-SNAPSHOT 5221747de -> 316a84b54
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/1.5.1-SNAPSHOT Commit: 316a84b54cf68cc8051d1971b3123e52c20338ef Parents: 5221747 Author: Josh Elser <els...@apache.org> Authored: Tue Nov 19 20:50:54 2013 -0500 Committer: Josh Elser <els...@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"); }