pan3793 commented on code in PR #7132:
URL: https://github.com/apache/kyuubi/pull/7132#discussion_r2199575351
##########
kyuubi-server/src/main/scala/org/apache/kyuubi/operation/BatchJobSubmission.scala:
##########
@@ -79,7 +79,18 @@ class BatchJobSubmission(
def appStartTime: Long = _appStartTime
def appStarted: Boolean = _appStartTime > 0
- private lazy val _submitTime = if (appStarted) _appStartTime else
System.currentTimeMillis
+ private lazy val _submitTime = System.currentTimeMillis
+ private lazy val waitEngineCompletion = builder.waitEngineCompletion
+ private def submitTime: Long = if (appStarted) {
Review Comment:
could you add comments to clarify the meaning of `appStartTime`,
`appStarted`, `submitTime`?
--
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]