We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a4715 commit 874f03dCopy full SHA for 874f03d
interop-testing/src/main/java/io/grpc/testing/integration/XdsTestClient.java
@@ -39,6 +39,7 @@
39
import io.grpc.MethodDescriptor;
40
import io.grpc.Server;
41
import io.grpc.netty.NettyServerBuilder;
42
+import io.grpc.protobuf.services.ProtoReflectionService;
43
import io.grpc.services.ChannelzService;
44
import io.grpc.stub.StreamObserver;
45
import io.grpc.testing.integration.Messages.ClientConfigureRequest;
@@ -234,6 +235,7 @@ private void run() {
234
235
NettyServerBuilder.forPort(statsPort)
236
.addService(new XdsStatsImpl())
237
.addService(new ConfigureUpdateServiceImpl())
238
+ .addService(ProtoReflectionService.newInstance())
239
.addService(ChannelzService.newInstance(100))
240
.build();
241
try {
0 commit comments