turboFei commented on code in PR #4767: URL: https://github.com/apache/kyuubi/pull/4767#discussion_r1176168569
########## kyuubi-server/src/main/scala/org/apache/kyuubi/operation/BatchJobSubmission.scala: ########## @@ -78,6 +78,9 @@ class BatchJobSubmission( @volatile private var _appStartTime = recoveryMetadata.map(_.engineOpenTime).getOrElse(0L) def appStartTime: Long = _appStartTime + def appStarted: Boolean = _appStartTime > 0 + + private lazy val _submitTime = if (_appStartTime > 0) _appStartTime else System.currentTimeMillis 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]
