Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
turboFei committed Jan 7, 2023
1 parent 11c6099 commit 42cafd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class BatchJobSubmission(
session.getSessionEvent.foreach(_.engineId = ai.id)
}
if (newState == RUNNING) {
session.onEngineOpened(_appSubmissionTime)
session.onEngineOpened()
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ class KyuubiBatchSessionImpl(
sessionEvent.totalOperations += 1
}

private[kyuubi] def onEngineOpened(openedTime: Long): Unit = {
private[kyuubi] def onEngineOpened(): Unit = {
if (sessionEvent.openedTime <= 0) {
sessionEvent.openedTime = openedTime
sessionEvent.openedTime = batchJobSubmissionOp.appSubmissionTime
EventBus.post(sessionEvent)
}
}
Expand Down

0 comments on commit 42cafd2

Please sign in to comment.