mirror of https://github.com/grpc/grpc-node.git
grpc-js-xds: Populate Node message field user_agent_version
This commit is contained in:
parent
9264d582c9
commit
481f704c77
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@grpc/grpc-js-xds",
|
||||
"version": "1.8.0",
|
||||
"version": "1.8.1",
|
||||
"description": "Plugin for @grpc/grpc-js. Adds the xds:// URL scheme and associated features.",
|
||||
"main": "build/src/index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -334,11 +334,13 @@ export class XdsClient {
|
|||
this.adsNode = {
|
||||
...bootstrapInfo.node,
|
||||
user_agent_name: userAgentName,
|
||||
user_agent_version: clientVersion,
|
||||
client_features: ['envoy.lb.does_not_support_overprovisioning'],
|
||||
};
|
||||
this.lrsNode = {
|
||||
...bootstrapInfo.node,
|
||||
user_agent_name: userAgentName,
|
||||
user_agent_version: clientVersion,
|
||||
client_features: ['envoy.lrs.supports_send_all_clusters'],
|
||||
};
|
||||
setCsdsClientNode(this.adsNode);
|
||||
|
|
Loading…
Reference in New Issue