mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1945 from murgatroid99/grpc-js-xds_resource_log_improvements
grpc-js-xds: Improve received resource list logging
This commit is contained in:
commit
4a5c1da93b
|
|
@ -158,7 +158,7 @@ export class CdsState implements XdsStreamState<Cluster__Output> {
|
||||||
watcher.onValidUpdate(message, isV2);
|
watcher.onValidUpdate(message, isV2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
trace('Received CDS updates for cluster names ' + Array.from(allClusterNames));
|
trace('Received CDS updates for cluster names [' + Array.from(allClusterNames) + ']');
|
||||||
this.handleMissingNames(allClusterNames);
|
this.handleMissingNames(allClusterNames);
|
||||||
this.edsState.handleMissingNames(allEdsServiceNames);
|
this.edsState.handleMissingNames(allEdsServiceNames);
|
||||||
return null;
|
return null;
|
||||||
|
|
|
||||||
|
|
@ -162,7 +162,7 @@ export class EdsState implements XdsStreamState<ClusterLoadAssignment__Output> {
|
||||||
watcher.onValidUpdate(message, isV2);
|
watcher.onValidUpdate(message, isV2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
trace('Received EDS updates for cluster names ' + Array.from(allClusterNames));
|
trace('Received EDS updates for cluster names [' + Array.from(allClusterNames) + ']');
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -175,7 +175,7 @@ export class LdsState implements XdsStreamState<Listener__Output> {
|
||||||
watcher.onValidUpdate(message, isV2);
|
watcher.onValidUpdate(message, isV2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
trace('Received RDS response with route config names ' + Array.from(allTargetNames));
|
trace('Received LDS response with listener names [' + Array.from(allTargetNames) + ']');
|
||||||
this.handleMissingNames(allTargetNames);
|
this.handleMissingNames(allTargetNames);
|
||||||
this.rdsState.handleMissingNames(allRouteConfigNames);
|
this.rdsState.handleMissingNames(allRouteConfigNames);
|
||||||
return null;
|
return null;
|
||||||
|
|
|
||||||
|
|
@ -199,7 +199,7 @@ export class RdsState implements XdsStreamState<RouteConfiguration__Output> {
|
||||||
watcher.onValidUpdate(message, isV2);
|
watcher.onValidUpdate(message, isV2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
trace('Received RDS response with route config names ' + Array.from(allRouteConfigNames));
|
trace('Received RDS response with route config names [' + Array.from(allRouteConfigNames) + ']');
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue