We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ec8ad commit c908fd3Copy full SHA for c908fd3
hbase-server/src/main/java/org/apache/hadoop/hbase/quotas/SpaceQuotaRefresherChore.java
@@ -79,9 +79,10 @@ protected void chore() {
79
// check whether Quota table is present or not.
80
if (!quotaTablePresent && !checkQuotaTableExists()) {
81
LOG.info("Quota table not found, skipping quota manager cache refresh.");
82
- quotaTablePresent = true;
83
return;
84
}
+ // since quotaTable is present so setting the flag as true.
85
+ quotaTablePresent = true;
86
if (LOG.isTraceEnabled()) {
87
LOG.trace("Reading current quota snapshots from hbase:quota.");
88
0 commit comments