diff --git a/packages/grpc-js-xds/interop/xds-interop-server.ts b/packages/grpc-js-xds/interop/xds-interop-server.ts index b05008a9..f13387d8 100644 --- a/packages/grpc-js-xds/interop/xds-interop-server.ts +++ b/packages/grpc-js-xds/interop/xds-interop-server.ts @@ -214,10 +214,12 @@ async function main() { const healthImpl = new HealthImplementation({'': 'NOT_SERVING'}); const xdsUpdateHealthServiceImpl = { SetServing(call: grpc.ServerUnaryCall, callback: grpc.sendUnaryData) { + console.log('SetServing called'); healthImpl.setStatus('', 'SERVING'); callback(null, {}); }, SetNotServing(call: grpc.ServerUnaryCall, callback: grpc.sendUnaryData) { + console.log('SetNotServing called'); healthImpl.setStatus('', 'NOT_SERVING'); callback(null, {}); }