Skip to content

Commit ffad337

Browse files
authored
[hotfix][runtime] Minor polish for the parameter naming of ExecutionGraphWithVertexParallelism#create. (#27272)
1 parent e3456e3 commit ffad337

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/CreatingExecutionGraph.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ private ExecutionGraphWithVertexParallelism(
317317
}
318318

319319
public static ExecutionGraphWithVertexParallelism create(
320-
ExecutionGraph executionGraph, JobSchedulingPlan vertexParallelism) {
321-
return new ExecutionGraphWithVertexParallelism(executionGraph, vertexParallelism);
320+
ExecutionGraph executionGraph, JobSchedulingPlan jobSchedulingPlan) {
321+
return new ExecutionGraphWithVertexParallelism(executionGraph, jobSchedulingPlan);
322322
}
323323

324324
public ExecutionGraph getExecutionGraph() {

0 commit comments

Comments
 (0)