This is an automated email from the ASF dual-hosted git repository.
tkhurana pushed a commit to branch 5.3
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/5.3 by this push:
new 231351e6d5 PHOENIX-7746 Fix flapper test
MetaDataCacheMetricsIT.testGlobalClientCacheMetricsOfCreateAndDropTable (#2346)
231351e6d5 is described below
commit 231351e6d57494f0dd21314185bb7349998bb8df
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()));
}