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 61a518c commit 608f087Copy full SHA for 608f087
packages/grpc-js-xds/src/csds.ts
@@ -62,10 +62,11 @@ function getCurrentConfigList(): ClientConfig[] {
62
for (const [authority, authorityState] of client.authorityStateMap) {
63
for (const [type, typeMap] of authorityState.resourceMap) {
64
for (const [key, resourceState] of typeMap) {
65
- const typeUrl = type.getFullTypeUrl();
+ const typeUrl = type.getTypeUrl();
66
const meta = resourceState.meta;
67
genericConfigList.push({
68
name: xdsResourceNameToString({authority, key}, typeUrl),
69
+ type_url: typeUrl,
70
client_status: meta.clientStatus,
71
version_info: meta.version,
72
xds_config: meta.clientStatus === 'ACKED' ? meta.rawResource : undefined,
0 commit comments