You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by la...@apache.org on 2019/06/30 05:38:44 UTC

[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5381 Increase phoenix.task.handling.interval.ms to 10s for tests.

This is an automated email from the ASF dual-hosted git repository.

larsh pushed a commit to branch 4.x-HBase-1.4
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-HBase-1.4 by this push:
     new c3996f1  PHOENIX-5381 Increase phoenix.task.handling.interval.ms to 10s for tests.
c3996f1 is described below

commit c3996f1eed7570f38475eb3969dba499faabbe9c
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Sat Jun 29 22:39:14 2019 -0700

    PHOENIX-5381 Increase phoenix.task.handling.interval.ms to 10s for tests.
---
 phoenix-core/src/test/java/org/apache/phoenix/query/BaseTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/phoenix-core/src/test/java/org/apache/phoenix/query/BaseTest.java b/phoenix-core/src/test/java/org/apache/phoenix/query/BaseTest.java
index dd89f07..e852c16 100644
--- a/phoenix-core/src/test/java/org/apache/phoenix/query/BaseTest.java
+++ b/phoenix-core/src/test/java/org/apache/phoenix/query/BaseTest.java
@@ -623,7 +623,7 @@ public abstract class BaseTest {
         conf.setInt("hbase.assignment.zkevent.workers", 5);
         conf.setInt("hbase.assignment.threads.max", 5);
         conf.setInt("hbase.catalogjanitor.interval", 5000);
-        conf.setInt(QueryServices.TASK_HANDLING_INTERVAL_MS_ATTRIB, 1000);
+        conf.setInt(QueryServices.TASK_HANDLING_INTERVAL_MS_ATTRIB, 10000);
         conf.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 2);
         conf.setInt(NUM_CONCURRENT_INDEX_WRITER_THREADS_CONF_KEY, 1);
         conf.setInt(GLOBAL_INDEX_ROW_REPAIR_COUNT_ATTRIB, 5);