Skip to content

Commit

Permalink
change variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
zaynt4606 committed Sep 20, 2024
1 parent 84a795a commit 8c65ac9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class LifecycleManager(val appUniqueId: String, val conf: CelebornConf) extends
private val rpcCacheExpireTime = conf.clientRpcCacheExpireTime
private val rpcMaxRetires = conf.clientRpcMaxRetries

private val batchRemoveExpiredShuffles = conf.batchHandleRemoveExpiredShufflesEnabled
private val batchRemoveExpiredShufflesEnabled = conf.batchHandleRemoveExpiredShufflesEnabled

private val excludedWorkersFilter = conf.registerShuffleFilterExcludedWorkerEnabled

Expand Down Expand Up @@ -1592,7 +1592,7 @@ class LifecycleManager(val appUniqueId: String, val conf: CelebornConf) extends
latestPartitionLocation.remove(shuffleId)
commitManager.removeExpiredShuffle(shuffleId)
changePartitionManager.removeExpiredShuffle(shuffleId)
if (!batchRemoveExpiredShuffles) {
if (!batchRemoveExpiredShufflesEnabled) {
val unregisterShuffleResponse = requestMasterUnregisterShuffle(
UnregisterShuffle(appUniqueId, shuffleId, MasterClient.genRequestId()))
// if unregister shuffle not success, wait next turn
Expand Down

0 comments on commit 8c65ac9

Please sign in to comment.