Skip to content

Commit 9631af7

Browse files
authored
HBASE-28031 TestClusterScopeQuotaThrottle is still failing with broken WAL writer (#5529)
Signed-off-by: Guanghao Zhang <zghao@apache.org>
1 parent a6bc210 commit 9631af7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestClusterScopeQuotaThrottle.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ public static void setUpBeforeClass() throws Exception {
7575
TEST_UTIL.getConfiguration().setInt("hbase.regionserver.msginterval", 100);
7676
TEST_UTIL.getConfiguration().setInt("hbase.client.pause", 250);
7777
TEST_UTIL.getConfiguration().setBoolean("hbase.master.enabletable.roundrobin", true);
78+
// disable stream slow monitor check, as in this test we inject our own EnvironmentEdge
79+
TEST_UTIL.getConfiguration().setInt("hbase.regionserver.async.wal.min.slow.detect.count",
80+
Integer.MAX_VALUE);
7881
TEST_UTIL.startMiniCluster(2);
7982
TEST_UTIL.waitTableAvailable(QuotaTableUtil.QUOTA_TABLE_NAME);
8083
QuotaCache.TEST_FORCE_REFRESH = true;

0 commit comments

Comments
 (0)