aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Baunton <edbaunton@gmail.com>2020-05-04 04:31:14 -0400
committerGitHub <noreply@github.com>2020-05-04 10:31:14 +0200
commit0b2ba96c5ffb50e06cf278e7f447abade150feed (patch)
tree22a4a88c400a99f9c42a9da4229cfc81e9e4485f
parent26c67c2070eac59e0fb15e7cac88a63a938ef351 (diff)
downloadbazelbuild-remote-apis-0b2ba96c5ffb50e06cf278e7f447abade150feed.tar.gz
Specify that stderr and stdout streams are resource names (#116)
In lieu of a more fully fledged service discovery layer, explicitly specify that the stderr and stdout stream names are in fact resource names from which one can Bytestream.Read. The actual endpoints are to be configured out of band. Signed-off-by: Ed Baunton <ebaunton1@bloomberg.net>
-rw-r--r--build/bazel/remote/execution/v2/remote_execution.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto
index 29759bc..103e164 100644
--- a/build/bazel/remote/execution/v2/remote_execution.proto
+++ b/build/bazel/remote/execution/v2/remote_execution.proto
@@ -1233,14 +1233,14 @@ message ExecuteOperationMetadata {
// being executed.
Digest action_digest = 2;
- // If set, the client can use this name with
+ // If set, the client can use this resource name with
// [ByteStream.Read][google.bytestream.ByteStream.Read] to stream the
- // standard output.
+ // standard output from the endpoint hosting streamed responses.
string stdout_stream_name = 3;
- // If set, the client can use this name with
+ // If set, the client can use this resource name with
// [ByteStream.Read][google.bytestream.ByteStream.Read] to stream the
- // standard error.
+ // standard error from the endpoint hosting streamed responses.
string stderr_stream_name = 4;
}