Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fb52bbf
Save changes.
kannanjgithub Jan 19, 2026
f518d5e
Save changes.
kannanjgithub Jan 20, 2026
3874631
Save changes.
kannanjgithub Jan 20, 2026
0bad82f
Save changes.
kannanjgithub Jan 21, 2026
51b38e2
Fix enum test.
kannanjgithub Jan 21, 2026
4da06a4
Revert temp changes.
kannanjgithub Jan 21, 2026
df70a27
Revert temp changes.
kannanjgithub Jan 21, 2026
bee005f
Try with server streaming alone.
kannanjgithub Jan 23, 2026
efce818
Interceptor logic.
kannanjgithub Jan 31, 2026
2ac2d47
Closing the stream after the rpc is done.
kannanjgithub Feb 10, 2026
4214889
Style fixes.
kannanjgithub Feb 10, 2026
e099d1d
Fix test name.
kannanjgithub Feb 10, 2026
3d75bf8
Fix style warnings.
kannanjgithub Feb 10, 2026
84d9528
Fix build.
kannanjgithub Feb 10, 2026
3136bca
Review comments - Build channel separately for MCS connection scaling…
kannanjgithub Feb 12, 2026
c3fc7c3
Address Review comments.
kannanjgithub Feb 12, 2026
93cb9ad
Expand the test name on the client side as well.
kannanjgithub Feb 13, 2026
3719011
Add debug print statements to diagnose why server is not starting.
kannanjgithub Feb 13, 2026
dbb3881
Revert "Add debug print statements to diagnose why server is not star…
kannanjgithub Feb 13, 2026
bd36d59
Add temp debug stmts for server start.
kannanjgithub Feb 13, 2026
0216d3b
Rename request proto field.
kannanjgithub Feb 19, 2026
3346bf8
Rename request proto field.
kannanjgithub Feb 19, 2026
d27128b
Rename response proto field.
kannanjgithub Feb 19, 2026
a8d66e1
Address review comments.
kannanjgithub Feb 20, 2026
9b66653
Specify MCS limit directly via command line arg.
kannanjgithub Mar 31, 2026
809ae0f
Merge remote-tracking branch 'origin/mcs-interop-tests' into mcs-inte…
kannanjgithub Mar 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename request proto field.
  • Loading branch information
kannanjgithub committed Feb 19, 2026
commit 0216d3b698a96b0041790b211f6bafe87a3aa6f8
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ public void testMcs(TestServiceGrpc.TestServiceStub asyncStub) throws Exception
asyncStub.fullDuplexCall(responseObserver1);
StreamingOutputCallRequest request = StreamingOutputCallRequest.newBuilder()
.addResponseParameters(ResponseParameters.newBuilder()
.setSendClientSocketAddressInResponse(
.setFillClientSocketAddress(
Messages.BoolValue.newBuilder().setValue(true).build())
.build())
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ private boolean whetherSendClientSocketAddressInResponse(StreamingOutputCallRequ
Iterator<ResponseParameters> responseParametersIterator =
request.getResponseParametersList().iterator();
while (responseParametersIterator.hasNext()) {
if (responseParametersIterator.next().getSendClientSocketAddressInResponse().getValue()) {
if (responseParametersIterator.next().getFillClientSocketAddress().getValue()) {
return true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion interop-testing/src/main/proto/grpc/testing/messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ message ResponseParameters {

// Whether to request the server to send the requesting client's socket
// address in the response.
BoolValue send_client_socket_address_in_response = 4;
BoolValue fill_client_socket_address = 4;
}

// Server-streaming request.
Expand Down