Skip to content

Commit c908fd3

Browse files
committed
review comments
1 parent 64ec8ad commit c908fd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceQuotaRefresherChore.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ protected void chore() {
7979
// check whether Quota table is present or not.
8080
if (!quotaTablePresent && !checkQuotaTableExists()) {
8181
LOG.info("Quota table not found, skipping quota manager cache refresh.");
82-
quotaTablePresent = true;
8382
return;
8483
}
84+
// since quotaTable is present so setting the flag as true.
85+
quotaTablePresent = true;
8586
if (LOG.isTraceEnabled()) {
8687
LOG.trace("Reading current quota snapshots from hbase:quota.");
8788
}

0 commit comments

Comments
 (0)