Skip to content

Commit b18681c

Browse files
Karthik PalanisamyguangxuCheng
authored andcommitted
HBASE-23199 Error populating Table-Attribute fields (#741)
Signed-off-by: GuangxuCheng <[email protected]>
1 parent ff2b290 commit b18681c

File tree

1 file changed

+3
-4
lines changed
  • hbase-server/src/main/resources/hbase-webapps/master

1 file changed

+3
-4
lines changed

hbase-server/src/main/resources/hbase-webapps/master/table.jsp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,7 @@ if (fqtn != null && master.isInitialized()) {
356356
</tr>
357357
<%
358358
}
359-
360-
if (quota.hasThrottle()) {
359+
if (quota != null && quota.hasThrottle()) {
361360
List<ThrottleSettings> throttles = QuotaSettingsFactory.fromTableThrottles(table.getName(), quota.getThrottle());
362361
if (throttles.size() > 0) {
363362
%>
@@ -389,8 +388,8 @@ if (fqtn != null && master.isInitialized()) {
389388
</tr>
390389
<%
391390
}
392-
}
393-
}
391+
}
392+
}
394393
%>
395394
</table>
396395
<h2>Table Schema</h2>

0 commit comments

Comments
 (0)