Skip to content

Commit

Permalink
[FLINK-17805][hotfix][network] Fix/update/rename InputProcessorUtil.c…
Browse files Browse the repository at this point in the history
…reateCheckpointedInputGatePair method
  • Loading branch information
pnowojski committed May 21, 2020
1 parent 303e008 commit 2efa2ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static CheckpointedInputGate createCheckpointedInputGate(
* @return a pair of {@link CheckpointedInputGate} created for two corresponding
* {@link InputGate}s supplied as parameters.
*/
public static CheckpointedInputGate[] createCheckpointedInputGatePair(
public static CheckpointedInputGate[] createCheckpointedMultipleInputGate(
AbstractInvokable toNotifyOnCheckpoint,
StreamConfig config,
ChannelStateWriter channelStateWriter,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected void createInputProcessor(
headOperator instanceof InputSelectable ? (InputSelectable) headOperator : null,
inputGates.length);

CheckpointedInputGate[] checkpointedInputGates = InputProcessorUtil.createCheckpointedInputGatePair(
CheckpointedInputGate[] checkpointedInputGates = InputProcessorUtil.createCheckpointedMultipleInputGate(
this,
getConfiguration(),
getChannelStateWriter(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected void createInputProcessor(
headOperator instanceof InputSelectable ? (InputSelectable) headOperator : null);

// create an input instance for each input
CheckpointedInputGate[] checkpointedInputGates = InputProcessorUtil.createCheckpointedInputGatePair(
CheckpointedInputGate[] checkpointedInputGates = InputProcessorUtil.createCheckpointedMultipleInputGate(
this,
getConfiguration(),
getChannelStateWriter(),
Expand Down

0 comments on commit 2efa2ed

Please sign in to comment.