turboFei commented on code in PR #7025:
URL: https://github.com/apache/kyuubi/pull/7025#discussion_r2046196562
##########
kyuubi-server/src/main/scala/org/apache/kyuubi/engine/KubernetesApplicationOperation.scala:
##########
@@ -502,8 +502,12 @@ object KubernetesApplicationOperation extends Logging {
.map(_.getState)
.map(containerStateToApplicationState)
- // When the pod app state is terminated, the container app state will be
ignored
- val applicationState = if (ApplicationState.isTerminated(podAppState)) {
+ // 1. if the container state is already terminated, use the container state
+ // 2. if the pod state is terminated, use the pod state and ignore the
container state
+ // 3. otherwise, use the container state if it exists or the pod state
+ val applicationState = if
(containerAppState.exists(ApplicationState.isTerminated)) {
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]