Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
## Bugfixes

* Fixed X (Java/Python) ([#X](https://github.com/apache/beam/issues/X)).
* Fixed passing of pipeline options to x-lang transforms when called from the Java SDK (Java) ([#36443](https://github.com/apache/beam/issues/36443)).
* PulsarIO has now changed support status from incomplete to experimental. Both read and writes should now minimally
function (un-partitioned topics, without schema support, timestamp ordered messages for read) (Java)
([#36141](https://github.com/apache/beam/issues/36141)).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ public OutputT expand(InputT input) {
.setComponents(originalComponents)
.setTransform(ptransformBuilder.build())
.setNamespace(getNamespace())
.setPipelineOptions(PipelineOptionsTranslation.toProto(p.getOptions()))
.build();
requestBuilder.setPipelineOptions(PipelineOptionsTranslation.toProto(p.getOptions()));

ExpansionApi.ExpansionResponse response =
clientFactory.getExpansionServiceClient(endpoint).expand(request);
Expand Down
Loading