Copilot commented on code in PR #8262:
URL: https://github.com/apache/hbase/pull/8262#discussion_r3278711453
##########
hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestPriorityRpc.java:
##########
@@ -51,26 +49,23 @@
/**
* Tests that verify certain RPCs get a higher QoS.
*/
-@Category({ RegionServerTests.class, MediumTests.class })
+@Tag(RegionServerTests.TAG)
+@Tag(SmallTests.TAG)
public class TestPriorityRpc {
Review Comment:
@Tag(SmallTests.TAG) is incorrect here because this test starts a
MiniHBaseCluster in `@BeforeAll` (UTIL.startMiniCluster(1)). Per SmallTests
definition, small tests "do not use a cluster". Please switch back to
MediumTests (as before) or another appropriate classification tag and update
the import accordingly.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]