GaetanLepage commented on PR #36251:
URL: https://github.com/apache/beam/pull/36251#issuecomment-3325779067
One more apparently:
```
# Ordering is important here.
# TODO(https://github.com/apache/beam/issues/20136): use key, value
pairs
# instead of depending on tags with index as a suffix.
indexed_side_inputs = [
(get_sideinput_index(tag), context.pcollections.get_by_id(id))
for tag, id in proto.inputs.items() if tag in side_input_tags
]
side_inputs = [si for _, si in sorted(indexed_side_inputs)]
result = AppliedPTransform(
parent=None,
transform=transform,
full_label=proto.unique_name,
main_inputs=main_inputs,
environment_id=None,
annotations=proto.annotations)
> if result.transform and result.transform.side_inputs:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'MaybeReshuffle' object has no attribute 'side_inputs'
apache_beam/pipeline.py:1526: AttributeError
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]