File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
java/io/grpc/testing/integration Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1118,7 +1118,7 @@ public void testMcs(TestServiceGrpc.TestServiceStub asyncStub) throws Exception
11181118 asyncStub .fullDuplexCall (responseObserver1 );
11191119 StreamingOutputCallRequest request = StreamingOutputCallRequest .newBuilder ()
11201120 .addResponseParameters (ResponseParameters .newBuilder ()
1121- .setSendClientSocketAddressInResponse (
1121+ .setFillClientSocketAddress (
11221122 Messages .BoolValue .newBuilder ().setValue (true ).build ())
11231123 .build ())
11241124 .build ();
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ private boolean whetherSendClientSocketAddressInResponse(StreamingOutputCallRequ
256256 Iterator <ResponseParameters > responseParametersIterator =
257257 request .getResponseParametersList ().iterator ();
258258 while (responseParametersIterator .hasNext ()) {
259- if (responseParametersIterator .next ().getSendClientSocketAddressInResponse ().getValue ()) {
259+ if (responseParametersIterator .next ().getFillClientSocketAddress ().getValue ()) {
260260 return true ;
261261 }
262262 }
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ message ResponseParameters {
162162
163163 // Whether to request the server to send the requesting client's socket
164164 // address in the response.
165- BoolValue send_client_socket_address_in_response = 4 ;
165+ BoolValue fill_client_socket_address = 4 ;
166166}
167167
168168// Server-streaming request.
You can’t perform that action at this time.
0 commit comments