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 ed3bcd4 commit 96f648bCopy full SHA for 96f648b
core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala
@@ -83,7 +83,7 @@ class HistoryServer(
83
}
84
85
val appId = parts(1)
86
- val attemptId = if (parts.length > 3) Some(parts(2)) else None
+ val attemptId = if (parts.length >= 3) Some(parts(2)) else None
87
88
// Since we may have applications with multiple attempts mixed with applications with a
89
// single attempt, we need to try both. Try the single-attempt route first, and if an
0 commit comments