turboFei commented on PR #2669:
URL:
https://github.com/apache/incubator-kyuubi/pull/2669#issuecomment-1128341485
It seems that this PR can not fix the issue.
It is confused that, we can get engineId when invoking
`getApplicationInfoByTag` but fail to get engineId when invoking
`killApplicationByTag`.
```
assert(jps.isSupported(builder.clusterManager()))
eventually(Timeout(10.seconds)) {
val desc1 = jps.getApplicationInfoByTag(id)
assert(desc1.contains("id"))
assert(desc1("name").contains(id))
assert(desc1("state") === "RUNNING")
}
val response = jps.killApplicationByTag(id)
assert(response._1, response._2)
assert(response._2 startsWith "Succeeded to terminate:")
```
--
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]