From 7b9afd05dc3c136c4b705549e892dbf259e90c0f Mon Sep 17 00:00:00 2001 From: Ace Nassri Date: Thu, 10 Oct 2019 08:10:01 -0700 Subject: [PATCH] Endpoints: add missing region tags --- endpoints/getting-started-grpc/client.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/endpoints/getting-started-grpc/client.js b/endpoints/getting-started-grpc/client.js index 50a1b28d2b..e6862072d0 100644 --- a/endpoints/getting-started-grpc/client.js +++ b/endpoints/getting-started-grpc/client.js @@ -15,6 +15,7 @@ 'use strict'; +// [START endpoints_make_grpc_request] const makeGrpcRequest = (JWT_AUTH_TOKEN, API_KEY, HOST, GREETEE) => { // Uncomment these lines to set their values // const JWT_AUTH_TOKEN = 'YOUR_JWT_AUTH_TOKEN'; @@ -52,6 +53,7 @@ const makeGrpcRequest = (JWT_AUTH_TOKEN, API_KEY, HOST, GREETEE) => { } }); }; +// [END endpoints_make_grpc_request] // The command-line program const {argv} = require('yargs')