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

Commit 9b5dd31

Browse files
oops
Change-Id: I87f110743cd6261e07b59bdcf2bc005af0916d35
1 parent 06f15f7 commit 9b5dd31

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/metrics/BigtableTracerStreamingCallable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void call(
6464
// tracer should always be an instance of bigtable tracer
6565
if (context.getTracer() instanceof BigtableTracer) {
6666
BigtableTracer tracer = (BigtableTracer) context.getTracer();
67-
grpcCtx.withCallOptions(
67+
grpcCtx = grpcCtx.withCallOptions(
6868
grpcCtx
6969
.getCallOptions()
7070
.withStreamTracerFactory(new BigtableGrpcStreamTracer.Factory(tracer)));

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/metrics/BigtableTracerUnaryCallable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public ApiFuture<ResponseT> futureCall(RequestT request, ApiCallContext context)
5959
if (context.getTracer() instanceof BigtableTracer) {
6060
BigtableTracer tracer = (BigtableTracer) context.getTracer();
6161

62-
grpcCtx.withCallOptions(
62+
grpcCtx = grpcCtx.withCallOptions(
6363
grpcCtx
6464
.getCallOptions()
6565
.withStreamTracerFactory(new BigtableGrpcStreamTracer.Factory(tracer)));

0 commit comments

Comments
 (0)