Skip to content

Commit adc25c2

Browse files
committed
grpc-js-xds: Expose admin service in interop client, enable CSDS test
1 parent 858d1b6 commit adc25c2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/grpc-js-xds/interop/xds-interop-client.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ function main() {
404404
const server = new grpc.Server();
405405
server.addService(loadedProto.grpc.testing.LoadBalancerStatsService.service, loadBalancerStatsServiceImpl);
406406
server.addService(loadedProto.grpc.testing.XdsUpdateClientConfigureService.service, xdsUpdateClientConfigureServiceImpl);
407+
grpc.addAdminServicesToServer(server);
407408
server.bindAsync(`0.0.0.0:${argv.stats_port}`, grpc.ServerCredentials.createInsecure(), (error, port) => {
408409
if (error) {
409410
throw error;

packages/grpc-js-xds/scripts/xds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ GRPC_NODE_TRACE=xds_client,xds_resolver,cds_balancer,eds_balancer,priority,weigh
5252
GRPC_NODE_VERBOSITY=DEBUG \
5353
NODE_XDS_INTEROP_VERBOSITY=1 \
5454
python3 grpc/tools/run_tests/run_xds_tests.py \
55-
--test_case="all,timeout,circuit_breaking,fault_injection" \
55+
--test_case="all,timeout,circuit_breaking,fault_injection,csds" \
5656
--project_id=grpc-testing \
5757
--source_image=projects/grpc-testing/global/images/xds-test-server-4 \
5858
--path_to_server_binary=/java_server/grpc-java/interop-testing/build/install/grpc-interop-testing/bin/xds-test-server \

0 commit comments

Comments
 (0)