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 b728f08 commit 23483e4Copy full SHA for 23483e4
core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala
@@ -89,7 +89,7 @@ class HistoryServer(
89
// Since we may have applications with multiple attempts mixed with applications with a
90
// single attempt, we need to try both. Try the single-attempt route first, and if an
91
// error is raised, then try the multiple attempt route.
92
- if (!loadAppUi(appId, None && (!attemptId.isDefined || !loadAppUi(appId, attemptId)) {
+ if (!loadAppUi(appId, None) && (!attemptId.isDefined || !loadAppUi(appId, attemptId))) {
93
val msg = <div class="row-fluid">Application {appId} not found.</div>
94
res.setStatus(HttpServletResponse.SC_NOT_FOUND)
95
UIUtils.basicSparkPage(msg, "Not Found").foreach { n =>
0 commit comments