We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10c8d1e commit 0648217Copy full SHA for 0648217
1 file changed
xds/src/main/java/io/grpc/xds/CompositeFilter.java
@@ -207,9 +207,9 @@ private static FilterDelegate createFilterDelegate(
207
typeUrl = typedStruct.getTypeUrl();
208
rawConfig = typedStruct.getValue();
209
} else if (typeUrl.equals("type.googleapis.com/xds.type.v3.TypedStruct")) {
210
- TypedStruct typedStruct = childFilterConfig
+ com.github.xds.type.v3.TypedStruct typedStruct = childFilterConfig
211
.getTypedConfig()
212
- .unpack(TypedStruct.class);
+ .unpack(com.github.xds.type.v3.TypedStruct.class);
213
214
215
}
0 commit comments