From ac9bfd5610e5be1b141f15b5a442087dd8cf7e03 Mon Sep 17 00:00:00 2001 From: Mihail Stoykov Date: Wed, 5 Jul 2023 11:02:07 +0300 Subject: [PATCH] Fix examples/grpc.js --- examples/grpc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/grpc.js b/examples/grpc.js index cda5adfe0b4..dd01f802932 100644 --- a/examples/grpc.js +++ b/examples/grpc.js @@ -8,7 +8,7 @@ client.load([], "./grpc_server/route_guide.proto") export default () => { client.connect("127.0.0.1:10000", { plaintext: true }) - const response = client.invoke("main.RouteGuide/GetFeature", { + const response = client.invoke("main.FeatureExplorer/GetFeature", { latitude: 410248224, longitude: -747127767 })