We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb59dd commit 70f8704Copy full SHA for 70f8704
1 file changed
xds/src/main/java/io/grpc/xds/MessagePrinter.java
@@ -16,6 +16,7 @@
16
17
package io.grpc.xds;
18
19
+import com.github.xds.type.v3.TypedStruct;
20
import com.google.protobuf.Descriptors.Descriptor;
21
import com.google.protobuf.InvalidProtocolBufferException;
22
import com.google.protobuf.Message;
@@ -67,7 +68,8 @@ private static JsonFormat.Printer newPrinter() {
67
68
.add(Cluster.getDescriptor())
69
.add(ClusterConfig.getDescriptor())
70
.add(ClusterLoadAssignment.getDescriptor())
- .add(WrrLocality.getDescriptor());
71
+ .add(WrrLocality.getDescriptor())
72
+ .add(TypedStruct.getDescriptor());
73
try {
74
@SuppressWarnings("unchecked")
75
Class<? extends Message> routeLookupClusterSpecifierClass =
0 commit comments