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 7b65675 commit 4229b76Copy full SHA for 4229b76
packages/grpc-js-xds/src/xds-client.ts
@@ -371,6 +371,13 @@ export class XdsClient {
371
...nodeV3,
372
client_features: ['envoy.lrs.supports_send_all_clusters'],
373
};
374
+ if (this.apiVersion === XdsApiVersion.V2) {
375
+ trace('ADS Node: ' + JSON.stringify(this.adsNodeV2, undefined, 2));
376
+ trace('LRS Node: ' + JSON.stringify(this.lrsNodeV2, undefined, 2));
377
+ } else {
378
+ trace('ADS Node: ' + JSON.stringify(this.adsNodeV3, undefined, 2));
379
+ trace('LRS Node: ' + JSON.stringify(this.lrsNodeV3, undefined, 2));
380
+ }
381
const credentialsConfigs = bootstrapInfo.xdsServers[0].channelCreds;
382
let channelCreds: ChannelCredentials | null = null;
383
for (const config of credentialsConfigs) {
0 commit comments