Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
lsm1 committed Sep 5, 2023
1 parent 1f38fa7 commit a6c9277
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,9 @@ class KyuubiSessionImpl(
}

@volatile private var engineLastAlive: Long = _
val engineAliveTimeout: Long = sessionConf.get(KyuubiConf.ENGINE_ALIVE_TIMEOUT)
val aliveProbeEnabled: Boolean = sessionConf.get(KyuubiConf.ENGINE_ALIVE_PROBE_ENABLED)
private val engineAliveMaxFailCount: Int = sessionConf.get(KyuubiConf.ENGINE_ALIVE_MAX_FAIL_COUNT)
private val engineAliveTimeout = sessionConf.get(KyuubiConf.ENGINE_ALIVE_TIMEOUT)
private val aliveProbeEnabled = sessionConf.get(KyuubiConf.ENGINE_ALIVE_PROBE_ENABLED)
private val engineAliveMaxFailCount = sessionConf.get(KyuubiConf.ENGINE_ALIVE_MAX_FAIL_COUNT)
private var engineAliveFailCount = 0

def checkEngineConnectionAlive(): Boolean = {
Expand Down

0 comments on commit a6c9277

Please sign in to comment.