Skip to content

Commit 00e4aee

Browse files
Tom GravesGitHub Enterprise
authored andcommitted
Merge pull request apache#147 from jlee2/YSPARK-658
[YSPARK-658] SPARK UI Search By Status
2 parents 62498c3 + 16791ea commit 00e4aee

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

core/src/main/resources/org/apache/spark/ui/static/executorspage.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function getThreadDumpEnabled() {
2626
}
2727

2828
function formatStatus(status, type) {
29-
if (type !== 'display') return status;
3029
if (status) {
3130
return "Active"
3231
} else {
@@ -370,7 +369,6 @@ $(document).ready(function () {
370369
},
371370
{data: 'hostPort'},
372371
{data: 'isActive', render: function (data, type, row) {
373-
if (type !== 'display') return data;
374372
if (row.isBlacklisted) return "Blacklisted";
375373
else return formatStatus (data, type);
376374
}

0 commit comments

Comments
 (0)