diff options
author | Vijay Pai <vpai@google.com> | 2017-02-27 13:30:37 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2017-04-03 14:24:53 -0700 |
commit | 45a9abae95ef46d234fc194fbfaac11746c74ff7 (patch) | |
tree | bd0e5be2140ff26295c37f719b325d85309a350e /src/proto | |
parent | a5da6e1806dcd1e26692e1bb1a024abf81beca89 (diff) |
Add option to limit # of messages per stream with tests
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/grpc/testing/control.proto | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/grpc/testing/control.proto b/src/proto/grpc/testing/control.proto index 8f0d25c2c9..acee86678d 100644 --- a/src/proto/grpc/testing/control.proto +++ b/src/proto/grpc/testing/control.proto @@ -113,6 +113,9 @@ message ClientConfig { string other_client_api = 15; repeated ChannelArg channel_args = 16; + + // Number of messages on a stream before it gets finished/restarted + int32 messages_per_stream = 18; } message ClientStatus { ClientStats stats = 1; } |