Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yang-g committed Sep 2, 2015
1 parent 867d0c1 commit 201ef59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/cpp/interop/interop_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion tools/gce_setup/grpc_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 201ef59

Please sign in to comment.