Skip to content

Commit

Permalink
Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jto committed Oct 25, 2023
1 parent 045271c commit dd62a77
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public void translateNode(
? context.getExecutionEnvironment().getMaxParallelism()
: context.getExecutionEnvironment().getParallelism();

FlinkUnboundedSource<T> unboundedSource = FlinkSource.unbounded(
FlinkUnboundedSource<T> unboundedSource = FlinkSource.unbounded(transform.getName(),
rawSource, new SerializablePipelineOptions(context.getPipelineOptions()), parallelism);
nonDedupSource =
context
Expand Down Expand Up @@ -376,6 +376,7 @@ public void translateNode(
: context.getExecutionEnvironment().getParallelism();

FlinkBoundedSource<T> flinkBoundedSource = FlinkSource.bounded(
transform.getName(),
rawSource,
new SerializablePipelineOptions(context.getPipelineOptions()),
parallelism);
Expand Down

0 comments on commit dd62a77

Please sign in to comment.