@@ -1383,8 +1383,8 @@ bool InteropClient::DoMcsConnectionScaling() {
13831383 LOG (ERROR) << " DoMcsConnectionScaling(): stream1->Read() failed." ;
13841384 return TransientFailureOrAbort ();
13851385 }
1386- std::string clientSocketAddressInCall1 = response1.peer_socket_address ();
1387- GRPC_CHECK (!clientSocketAddressInCall1 .empty ());
1386+ std::string peerSocketAddressInCall1 = response1.peer_socket_address ();
1387+ GRPC_CHECK (!peerSocketAddressInCall1 .empty ());
13881388
13891389 VLOG (2 ) << " Sending Mcs connection scaling streaming rpc2 ..." ;
13901390
@@ -1403,10 +1403,10 @@ bool InteropClient::DoMcsConnectionScaling() {
14031403 LOG (ERROR) << " DoMcsConnectionScaling(): stream2->Read() failed." ;
14041404 return TransientFailureOrAbort ();
14051405 }
1406- std::string clientSocketAddressInCall2 = response2.peer_socket_address ();
1406+ std::string peerSocketAddressInCall2 = response2.peer_socket_address ();
14071407
14081408 // The same connection should have been used for both streams.
1409- GRPC_CHECK (clientSocketAddressInCall1 == clientSocketAddressInCall2 );
1409+ GRPC_CHECK (peerSocketAddressInCall1 == peerSocketAddressInCall2 );
14101410
14111411 VLOG (2 ) << " Sending Mcs connection scaling streaming rpc3 ..." ;
14121412
@@ -1425,11 +1425,11 @@ bool InteropClient::DoMcsConnectionScaling() {
14251425 LOG (ERROR) << " DoMcsConnectionScaling(): stream3->Read() failed." ;
14261426 return TransientFailureOrAbort ();
14271427 }
1428- std::string clientSocketAddressInCall3 = response3.peer_socket_address ();
1429- GRPC_CHECK (!clientSocketAddressInCall3 .empty ());
1428+ std::string peerSocketAddressInCall3 = response3.peer_socket_address ();
1429+ GRPC_CHECK (!peerSocketAddressInCall3 .empty ());
14301430
14311431 // A new connection should have been used for the 3rd stream.
1432- GRPC_CHECK (clientSocketAddressInCall3 != clientSocketAddressInCall1 );
1432+ GRPC_CHECK (peerSocketAddressInCall3 != peerSocketAddressInCall1 );
14331433
14341434 stream1->WritesDone ();
14351435 GRPC_CHECK (!stream1->Read (&response1));
0 commit comments