This is an automated email from the ASF dual-hosted git repository.
apurtell pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new ce1455c365a HBASE-27087 TestQuotaThrottle times out
ce1455c365a is described below
commit ce1455c365a8685e173f2160d0bdd3fc1c964194
Author: Andrew Purtell <[email protected]>
AuthorDate: Tue Jul 26 14:05:19 2022 -0700
HBASE-27087 TestQuotaThrottle times out
Signed-off-by: Andrew Purtell <[email protected]>
---
.../test/java/org/apache/hadoop/hbase/quotas/TestQuotaThrottle.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestQuotaThrottle.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestQuotaThrottle.java
index 1c94bd5263d..1cfd133a5bc 100644
---
a/hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestQuotaThrottle.java
+++
b/hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestQuotaThrottle.java
@@ -44,11 +44,15 @@ import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
+import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
+// This tests breaks monotonic WAL numbering after HBASE-20746 because of how
it
+// manipulates the EnvironmentEdge.
+@Ignore("See HBASE-27243")
@Category({ RegionServerTests.class, MediumTests.class })
public class TestQuotaThrottle {