Skip to content

Commit

Permalink
[hotfix][runtime] Remove unused SchedulerBase.checkpointRecoveryFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhachatryan committed Jan 25, 2021
1 parent 48b3f10 commit 36e8221
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -204,11 +204,11 @@ public SchedulerBase(
jobGraph,
jobMasterConfiguration,
userCodeLoader,
checkpointRecoveryFactory,
checkNotNull(checkpointRecoveryFactory),
log);
this.checkpointIdCounter =
SchedulerUtils.createCheckpointIDCounterIfCheckpointingIsEnabled(
jobGraph, checkpointRecoveryFactory);
jobGraph, checkNotNull(checkpointRecoveryFactory));

this.executionGraph =
createAndRestoreExecutionGraph(
Expand Down

0 comments on commit 36e8221

Please sign in to comment.