Skip to content

Commit

Permalink
Fix use of wrong key in Dataflow side input
Browse files Browse the repository at this point in the history
  • Loading branch information
herohde committed Sep 18, 2018
1 parent 633d457 commit e5ef9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/go/pkg/beam/runners/dataflow/dataflowlib/translate.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func (x *translator) translateTransform(trunk string, id string) ([]*df.Step, er
}
steps = append(steps, side)

prop.NonParallelInputs[side.Name] = newOutputReference(side.Name, "i0")
prop.NonParallelInputs[key] = newOutputReference(side.Name, "i0")
}

in := stringx.SingleValue(rem)
Expand Down

0 comments on commit e5ef9b5

Please sign in to comment.