Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
7edfcb02
Commit
7edfcb02
authored
8 years ago
by
David Garcia Quintas
Browse files
Options
Downloads
Patches
Plain Diff
Using inlined BoolValue in lieu of wrappers.proto due to lack of node support
parent
5ad70a69
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/proto/grpc/testing/messages.proto
+11
-5
11 additions, 5 deletions
src/proto/grpc/testing/messages.proto
with
11 additions
and
5 deletions
src/proto/grpc/testing/messages.proto
+
11
−
5
View file @
7edfcb02
...
...
@@ -32,7 +32,13 @@
syntax
=
"proto3"
;
import
"google/protobuf/wrappers.proto"
;
// TODO(dgq): Go back to using well-known types once
// https://github.com/grpc/grpc/issues/6980 has been fixed.
// import "google/protobuf/wrappers.proto";
message
BoolValue
{
// The bool value.
bool
value
=
1
;
}
package
grpc
.
testing
;
...
...
@@ -82,13 +88,13 @@ message SimpleRequest {
// "nullable" in order to interoperate seamlessly with clients not able to
// implement the full compression tests by introspecting the call to verify
// the response's compression status.
google.protobuf.
BoolValue
response_compressed
=
6
;
BoolValue
response_compressed
=
6
;
// Whether server should return a given status
EchoStatus
response_status
=
7
;
// Whether the server should expect this request to be compressed.
google.protobuf.
BoolValue
expect_compressed
=
8
;
BoolValue
expect_compressed
=
8
;
}
// Unary response, as configured by the request.
...
...
@@ -111,7 +117,7 @@ message StreamingInputCallRequest {
// is "nullable" in order to interoperate seamlessly with servers not able to
// implement the full compression tests by introspecting the call to verify
// the request's compression status.
google.protobuf.
BoolValue
expect_compressed
=
2
;
BoolValue
expect_compressed
=
2
;
// Not expecting any payload from the response.
}
...
...
@@ -135,7 +141,7 @@ message ResponseParameters {
// "nullable" in order to interoperate seamlessly with clients not able to
// implement the full compression tests by introspecting the call to verify
// the response's compression status.
google.protobuf.
BoolValue
compressed
=
3
;
BoolValue
compressed
=
3
;
}
// Server-streaming request.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment