Skip to content

Commit

Permalink
[BEAM-3027] Correctly set output type on SourceId-stripper
Browse files Browse the repository at this point in the history
  • Loading branch information
aljoscha committed Oct 9, 2017
1 parent b44056f commit ca20e69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ public void translateNode(
if (transform.getSource().requiresDeduping()) {
source = nonDedupSource.keyBy(
new ValueWithRecordIdKeySelector<T>())
.transform("debuping", outputTypeInfo, new DedupingOperator<T>());
.transform("deduping", outputTypeInfo, new DedupingOperator<T>());
} else {
source = nonDedupSource.flatMap(new StripIdsMap<T>());
source = nonDedupSource.flatMap(new StripIdsMap<T>()).returns(outputTypeInfo);
}
} catch (Exception e) {
throw new RuntimeException(
Expand Down

0 comments on commit ca20e69

Please sign in to comment.