fix: Fix sending of Pipeline options when running a Pipeline in a transaction by MarkDuckworth · Pull Request #2348 · googleapis/java-firestore · GitHub
Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.
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
19 changes: 12 additions & 7 deletions .github/scripts/update_generation_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public ApiFuture<Pipeline.Snapshot> execute(
@Nonnull Pipeline pipeline, @Nonnull PipelineExecuteOptions options) {
Preconditions.checkState(isEmpty(), READ_BEFORE_WRITE_ERROR_MSG);
try (TraceUtil.Scope ignored = transactionTraceContext.makeCurrent()) {
return pipeline.execute(new PipelineExecuteOptions(), transactionId, null);
return pipeline.execute(options, transactionId, null);
}
}
}
Loading