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 985e23c commit ada4f88Copy full SHA for ada4f88
kyuubi-server/src/main/scala/org/apache/kyuubi/engine/ApplicationOperation.scala
@@ -106,7 +106,7 @@ object ApplicationState extends Enumeration {
106
def isFailed(state: ApplicationState, supportPersistedAppState: Boolean): Boolean = state match {
107
case FAILED => true
108
case KILLED => true
109
- case NOT_FOUND => supportPersistedAppState
+ case NOT_FOUND if supportPersistedAppState => true
110
case _ => false
111
}
112
0 commit comments