chandrasekhar-188k commented on code in PR #5691:
URL: https://github.com/apache/hbase/pull/5691#discussion_r1552671014


##########
hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestQuotaAdmin.java:
##########
@@ -994,4 +994,16 @@ public int getQuotaSettingCount(Admin admin) throws 
IOException {
     }
     return quotaSettingCount;
   }
+
+  @Test
+  public void testQuotaTableDisableAndEnable() throws Exception {
+    final Admin admin = TEST_UTIL.getAdmin();
+    admin.disableTable(QuotaUtil.QUOTA_TABLE_NAME);
+    try {
+      admin.enableTable(QuotaUtil.QUOTA_TABLE_NAME);
+    } catch (Exception ex) {
+      LOG.error("", ex);

Review Comment:
   done



-- 
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: issues-unsubscr...@hbase.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to