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

Commit 729f9be

Browse files
format
Change-Id: Ide93ae0406012e8e5779d65cb9770dbda5d0562e
1 parent 9b5dd31 commit 729f9be

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,11 @@ 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 = grpcCtx.withCallOptions(
68-
grpcCtx
69-
.getCallOptions()
70-
.withStreamTracerFactory(new BigtableGrpcStreamTracer.Factory(tracer)));
67+
grpcCtx =
68+
grpcCtx.withCallOptions(
69+
grpcCtx
70+
.getCallOptions()
71+
.withStreamTracerFactory(new BigtableGrpcStreamTracer.Factory(tracer)));
7172

7273
BigtableTracerResponseObserver<ResponseT> innerObserver =
7374
new BigtableTracerResponseObserver<>(

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ public ApiFuture<ResponseT> futureCall(RequestT request, ApiCallContext context)
5959
if (context.getTracer() instanceof BigtableTracer) {
6060
BigtableTracer tracer = (BigtableTracer) context.getTracer();
6161

62-
grpcCtx = grpcCtx.withCallOptions(
63-
grpcCtx
64-
.getCallOptions()
65-
.withStreamTracerFactory(new BigtableGrpcStreamTracer.Factory(tracer)));
62+
grpcCtx =
63+
grpcCtx.withCallOptions(
64+
grpcCtx
65+
.getCallOptions()
66+
.withStreamTracerFactory(new BigtableGrpcStreamTracer.Factory(tracer)));
6667

6768
BigtableTracerUnaryCallback<ResponseT> callback =
6869
new BigtableTracerUnaryCallback<>(

0 commit comments

Comments
 (0)