HDFS-9357. NN UI renders icons of decommissioned DN incorrectly. Contributed by Surendra Singh Lilhore.
This commit is contained in:
parent
b9389ac5b5
commit
b61aa716e8
|
@ -1388,6 +1388,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-9351. checkNNStartup() need to be called when fsck calls
|
HDFS-9351. checkNNStartup() need to be called when fsck calls
|
||||||
FSNamesystem.getSnapshottableDirs(). (Xiao Chen via Yongjun Zhang)
|
FSNamesystem.getSnapshottableDirs(). (Xiao Chen via Yongjun Zhang)
|
||||||
|
|
||||||
|
HDFS-9357. NN UI renders icons of decommissioned DN incorrectly.
|
||||||
|
(Surendra Singh Lilhore via wheat9)
|
||||||
|
|
||||||
Release 2.7.3 - UNRELEASED
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -285,8 +285,8 @@
|
||||||
<ul class="dfshealth-node-legend">
|
<ul class="dfshealth-node-legend">
|
||||||
<li class="dfshealth-node-icon dfshealth-node-alive">In service</li>
|
<li class="dfshealth-node-icon dfshealth-node-alive">In service</li>
|
||||||
<li class="dfshealth-node-icon dfshealth-node-down">Down</li>
|
<li class="dfshealth-node-icon dfshealth-node-down">Down</li>
|
||||||
<li class="dfshealth-node-icon dfshealth-node-decommisioned">Decommisioned</li>
|
<li class="dfshealth-node-icon dfshealth-node-decommissioned">Decommissioned</li>
|
||||||
<li class="dfshealth-node-icon dfshealth-node-down-decommisioned">Decommissioned & dead</li>
|
<li class="dfshealth-node-icon dfshealth-node-down-decommissioned">Decommissioned & dead</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="page-header"><h1><small>In operation</small></h1></div>
|
<div class="page-header"><h1><small>In operation</small></h1></div>
|
||||||
|
|
|
@ -235,7 +235,7 @@ header.bs-docs-nav, header.bs-docs-nav .navbar-brand {
|
||||||
content: "\e013";
|
content: "\e013";
|
||||||
}
|
}
|
||||||
|
|
||||||
.dfshealth-node-decommisioned:before {
|
.dfshealth-node-decommissioned:before {
|
||||||
color: #eea236;
|
color: #eea236;
|
||||||
content: "\e136";
|
content: "\e136";
|
||||||
}
|
}
|
||||||
|
@ -245,7 +245,7 @@ header.bs-docs-nav, header.bs-docs-nav .navbar-brand {
|
||||||
content: "\e101";
|
content: "\e101";
|
||||||
}
|
}
|
||||||
|
|
||||||
.dfshealth-node-down-decommisioned:before {
|
.dfshealth-node-down-decommissioned:before {
|
||||||
color: #2e6da6;
|
color: #2e6da6;
|
||||||
content: "\e017";
|
content: "\e017";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue