ACCUMULO-3249 Didn't wait long enough to check for expected condition
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/eaaebdf3 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/eaaebdf3 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/eaaebdf3 Branch: refs/heads/master Commit: eaaebdf33b7d26a0977d2df252851639726abcf0 Parents: 6512bfd Author: Josh Elser <[email protected]> Authored: Thu Oct 23 12:26:15 2014 -0400 Committer: Josh Elser <[email protected]> Committed: Thu Oct 23 12:26:15 2014 -0400 ---------------------------------------------------------------------- .../java/org/apache/accumulo/test/replication/ReplicationIT.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/eaaebdf3/test/src/test/java/org/apache/accumulo/test/replication/ReplicationIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/replication/ReplicationIT.java b/test/src/test/java/org/apache/accumulo/test/replication/ReplicationIT.java index e8312df..fb96d7f 100644 --- a/test/src/test/java/org/apache/accumulo/test/replication/ReplicationIT.java +++ b/test/src/test/java/org/apache/accumulo/test/replication/ReplicationIT.java @@ -1199,6 +1199,8 @@ public class ReplicationIT extends ConfigurableMacIT { if (allClosed) { break; } + + UtilWaitThread.sleep(2000); } if (!allClosed) { @@ -1233,7 +1235,7 @@ public class ReplicationIT extends ConfigurableMacIT { break; } - UtilWaitThread.sleep(1000); + UtilWaitThread.sleep(2000); } if (!allClosed) {
