We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33043e1 commit b7dee46Copy full SHA for b7dee46
1 file changed
netty/src/main/java/io/grpc/netty/NettyClientHandler.java
@@ -315,6 +315,7 @@ private NettyClientHandler(
315
this.authority = authority;
316
this.attributes = Attributes.newBuilder()
317
.set(GrpcAttributes.ATTR_CLIENT_EAG_ATTRS, eagAttributes).build();
318
+ this.tcpMetrics = new TcpMetrics(metricRecorder);
319
320
// Set the frame listener on the decoder.
321
decoder().frameListener(new FrameListener());
@@ -357,7 +358,6 @@ public void onStreamClosed(Http2Stream stream) {
357
358
}
359
360
});
- this.tcpMetrics = new TcpMetrics(metricRecorder);
361
362
363
/**
0 commit comments