HBASE-22704 Avoid NPE when access table.jsp and snapshot.jsp but master not finish initialization (#389)
This commit is contained in:
parent
2afd5d05d4
commit
2b7e33fe52
|
@ -36,7 +36,7 @@
|
||||||
SnapshotInfo.SnapshotStats stats = null;
|
SnapshotInfo.SnapshotStats stats = null;
|
||||||
TableName snapshotTable = null;
|
TableName snapshotTable = null;
|
||||||
boolean tableExists = false;
|
boolean tableExists = false;
|
||||||
if(snapshotName != null) {
|
if(snapshotName != null && master.isInitialized()) {
|
||||||
try (Admin admin = master.getConnection().getAdmin()) {
|
try (Admin admin = master.getConnection().getAdmin()) {
|
||||||
for (SnapshotDescription snapshotDesc: admin.listSnapshots()) {
|
for (SnapshotDescription snapshotDesc: admin.listSnapshots()) {
|
||||||
if (snapshotName.equals(snapshotDesc.getName())) {
|
if (snapshotName.equals(snapshotDesc.getName())) {
|
||||||
|
@ -66,7 +66,14 @@
|
||||||
</jsp:include>
|
</jsp:include>
|
||||||
|
|
||||||
<div class="container-fluid content">
|
<div class="container-fluid content">
|
||||||
<% if (snapshot == null) { %>
|
<% if (!master.isInitialized()) { %>
|
||||||
|
<div class="row inner_header">
|
||||||
|
<div class="page-header">
|
||||||
|
<h1>Master is not initialized</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<jsp:include page="redirect.jsp" />
|
||||||
|
<% } else if (snapshot == null) { %>
|
||||||
<div class="row inner_header">
|
<div class="row inner_header">
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1>Snapshot "<%= snapshotName %>" does not exist</h1>
|
<h1>Snapshot "<%= snapshotName %>" does not exist</h1>
|
||||||
|
|
|
@ -129,7 +129,7 @@
|
||||||
</jsp:include>
|
</jsp:include>
|
||||||
|
|
||||||
<%
|
<%
|
||||||
if ( fqtn != null ) {
|
if (fqtn != null && master.isInitialized()) {
|
||||||
try {
|
try {
|
||||||
table = master.getConnection().getTable(TableName.valueOf(fqtn));
|
table = master.getConnection().getTable(TableName.valueOf(fqtn));
|
||||||
if (table.getDescriptor().getRegionReplication() > 1) {
|
if (table.getDescriptor().getRegionReplication() > 1) {
|
||||||
|
@ -703,7 +703,7 @@ Actions:
|
||||||
</div> <%
|
</div> <%
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else { // handle the case for fqtn is null with error message + redirect
|
else { // handle the case for fqtn is null or master is not initialized with error message + redirect
|
||||||
%>
|
%>
|
||||||
<div class="container-fluid content">
|
<div class="container-fluid content">
|
||||||
<div class="row inner_header">
|
<div class="row inner_header">
|
||||||
|
|
Loading…
Reference in New Issue