From 201ef598477c2042a8f4daae8e76f63bf8892e53 Mon Sep 17 00:00:00 2001 From: yang-g Date: Wed, 2 Sep 2015 15:55:10 -0700 Subject: [PATCH] more changes --- test/cpp/interop/interop_client.cc | 4 ++-- tools/gce_setup/grpc_docker.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cpp/interop/interop_client.cc b/test/cpp/interop/interop_client.cc index 40c56c73de420..8124cae67a7e5 100644 --- a/test/cpp/interop/interop_client.cc +++ b/test/cpp/interop/interop_client.cc @@ -204,7 +204,7 @@ void InteropClient::DoOauth2AuthToken(const grpc::string& username, void InteropClient::DoPerRpcCreds(const grpc::string& json_key) { gpr_log(GPR_INFO, - "Sending a unary rpc with per-rpc raw oauth2 access token ..."); + "Sending a unary rpc with per-rpc JWT access token ..."); SimpleRequest request; SimpleResponse response; request.set_fill_username(true); @@ -222,7 +222,7 @@ void InteropClient::DoPerRpcCreds(const grpc::string& json_key) { AssertOkOrPrintErrorStatus(s); GPR_ASSERT(!response.username().empty()); GPR_ASSERT(json_key.find(response.username()) != grpc::string::npos); - gpr_log(GPR_INFO, "Unary with per-rpc oauth2 access token done."); + gpr_log(GPR_INFO, "Unary with per-rpc JWT access token done."); } void InteropClient::DoJwtTokenCreds(const grpc::string& username) { diff --git a/tools/gce_setup/grpc_docker.sh b/tools/gce_setup/grpc_docker.sh index 3c996fc2fd641..efebe03fac017 100755 --- a/tools/gce_setup/grpc_docker.sh +++ b/tools/gce_setup/grpc_docker.sh @@ -542,7 +542,7 @@ grpc_cloud_prod_auth_test_args() { cxx) if [ "$test_case" == "oauth2_auth_token" ] then - test_command="compute_engine_creds" + grpc_gen_test_cmd="grpc_cloud_prod_auth_compute_engine_creds" fi grpc_client_platform='Docker' grpc_gen_test_cmd+="_gen_$1_cmd"