You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by sa...@apache.org on 2015/04/17 22:49:54 UTC

phoenix git commit: PHOENIX-1779 Addendum - Increase wait time for split to complete for RoundRobinResultIteratorIT

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 45c9716c1 -> 89ececef3


PHOENIX-1779 Addendum - Increase wait time for split to complete for RoundRobinResultIteratorIT


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 89ececef36a62b5170b3d94c5512df1571d4dd0b
Parents: 45c9716
Author: Samarth <sa...@salesforce.com>
Authored: Fri Apr 17 13:49:22 2015 -0700
Committer: Samarth <sa...@salesforce.com>
Committed: Fri Apr 17 13:49:22 2015 -0700

----------------------------------------------------------------------
 .../org/apache/phoenix/iterate/RoundRobinResultIteratorIT.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/89ececef/phoenix-core/src/it/java/org/apache/phoenix/iterate/RoundRobinResultIteratorIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/iterate/RoundRobinResultIteratorIT.java b/phoenix-core/src/it/java/org/apache/phoenix/iterate/RoundRobinResultIteratorIT.java
index 1e3db11..6a9b3d4 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/iterate/RoundRobinResultIteratorIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/iterate/RoundRobinResultIteratorIT.java
@@ -84,7 +84,7 @@ public class RoundRobinResultIteratorIT extends BaseHBaseManagedTimeIT {
             admin.split(tableName);
             CountDownLatch latch = new CountDownLatch(1);
             int nTries = 0;
-            long waitTimeMillis = 1000;
+            long waitTimeMillis = 2000;
             while (nRegions == nRegionsBeforeSplit && nTries < 10) {
                 latch.await(waitTimeMillis, TimeUnit.MILLISECONDS);
                 nRegions = services.getAllTableRegions(tableNameBytes).size();