Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit c2e6d9a

Browse files
committed
fix: Fix sending of Pipeline options when running a Pipeline in a transaction
1 parent f9439c9 commit c2e6d9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google-cloud-firestore/src/main/java/com/google/cloud/firestore/ServerSideTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public ApiFuture<Pipeline.Snapshot> execute(@Nonnull Pipeline pipeline) {
279279
public ApiFuture<Pipeline.Snapshot> execute(
280280
@Nonnull Pipeline pipeline, @Nonnull PipelineExecuteOptions options) {
281281
try (TraceUtil.Scope ignored = transactionTraceContext.makeCurrent()) {
282-
return pipeline.execute(new PipelineExecuteOptions(), transactionId, null);
282+
return pipeline.execute(options, transactionId, null);
283283
}
284284
}
285285
}

0 commit comments

Comments
 (0)