pankaj72981 commented on code in PR #5691:
URL: https://github.com/apache/hbase/pull/5691#discussion_r1502147908


##########
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:
   Error message is empty and we have assertion message, se we may dont need a 
log message here.



-- 
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