Skip to content

Commit ada4f88

Browse files
authored
Update kyuubi-server/src/main/scala/org/apache/kyuubi/engine/ApplicationOperation.scala
1 parent 985e23c commit ada4f88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kyuubi-server/src/main/scala/org/apache/kyuubi/engine/ApplicationOperation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ object ApplicationState extends Enumeration {
106106
def isFailed(state: ApplicationState, supportPersistedAppState: Boolean): Boolean = state match {
107107
case FAILED => true
108108
case KILLED => true
109-
case NOT_FOUND => supportPersistedAppState
109+
case NOT_FOUND if supportPersistedAppState => true
110110
case _ => false
111111
}
112112

0 commit comments

Comments
 (0)