This is an automated email from the ASF dual-hosted git repository.
tkhurana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/master by this push:
new aecd1f51c9 PHOENIX-7746 Fix flapper test
MetaDataCacheMetricsIT.testGlobalClientCacheMetricsOfCreateAndDropTable (#2346)
aecd1f51c9 is described below
commit aecd1f51c9f9928d62ceb09380f25754d2054ad3
Author: tkhurana <[email protected]>
AuthorDate: Tue Jan 13 11:03:27 2026 -0800
PHOENIX-7746 Fix flapper test
MetaDataCacheMetricsIT.testGlobalClientCacheMetricsOfCreateAndDropTable (#2346)
---
.../src/it/java/org/apache/phoenix/query/MetaDataCachingIT.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/phoenix-core/src/it/java/org/apache/phoenix/query/MetaDataCachingIT.java
b/phoenix-core/src/it/java/org/apache/phoenix/query/MetaDataCachingIT.java
index c6330673e2..03e70ddf77 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/query/MetaDataCachingIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/query/MetaDataCachingIT.java
@@ -65,6 +65,8 @@ public class MetaDataCachingIT extends BaseTest {
// zero to allow insertion of system tables even when the cache reaches
its maximum weight.
props.put(QueryServices.MAX_CLIENT_METADATA_CACHE_SIZE_ATTRIB, "50000");
props.put(QueryServices.CLIENT_CACHE_ENCODING, "object");
+ props.put(QueryServices.TASK_HANDLING_INTERVAL_MS_ATTRIB,
Long.toString(Long.MAX_VALUE));
+ props.put(QueryServices.TASK_HANDLING_INITIAL_DELAY_MS_ATTRIB,
Long.toString(Long.MAX_VALUE));
setUpTestDriver(new ReadOnlyProps(props.entrySet().iterator()));
}