Repository: accumulo Updated Branches: refs/heads/master d1543a4e5 -> 05e2b12a8
ACCUMULO-2492 add time for zookeeper propogation Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/7d32c522 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/7d32c522 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/7d32c522 Branch: refs/heads/master Commit: 7d32c5229219fafe60699dea88ea04544f51d61d Parents: c3837f4 Author: Eric Newton <eric.new...@gmail.com> Authored: Tue Mar 18 11:44:26 2014 -0400 Committer: Eric Newton <eric.new...@gmail.com> Committed: Tue Mar 18 11:44:45 2014 -0400 ---------------------------------------------------------------------- test/src/test/java/org/apache/accumulo/test/NamespacesIT.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/7d32c522/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java b/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java index af9274b..a2be168 100644 --- a/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java +++ b/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java @@ -313,6 +313,7 @@ public class NamespacesIT extends SimpleMacIT { // verify entry is filtered out (also, verify conflict checking API) c.namespaceOperations().checkIteratorConflicts(namespace, setting, EnumSet.allOf(IteratorScope.class)); c.namespaceOperations().attachIterator(namespace, setting); + UtilWaitThread.sleep(2*1000); try { c.namespaceOperations().checkIteratorConflicts(namespace, setting, EnumSet.allOf(IteratorScope.class)); fail(); @@ -328,6 +329,7 @@ public class NamespacesIT extends SimpleMacIT { // verify can see inserted entry again c.namespaceOperations().removeIterator(namespace, setting.getName(), EnumSet.allOf(IteratorScope.class)); + UtilWaitThread.sleep(2*1000); assertFalse(c.namespaceOperations().listIterators(namespace).containsKey(iterName)); assertFalse(c.tableOperations().listIterators(t1).containsKey(iterName)); s = c.createScanner(t1, Authorizations.EMPTY);