aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Gil <santix91@gmail.com>2019-09-27 09:47:14 -0300
committerOla Rozenfeld <olaola@google.com>2019-09-27 08:47:14 -0400
commit060fccaade074a7399a75152781e0ea64efd0f51 (patch)
tree584904e5bdab6a2bbe4de2b2f67bda0647a58b64
parent5d67da2fb88dad28d7dcd812025987a387c0ee6e (diff)
downloadbazelbuild-remote-apis-060fccaade074a7399a75152781e0ea64efd0f51.tar.gz
Clarify description of `GetTreeRequest.page_token` (#95)
This makes it more clear that the `page_token` value represents an offset in the stream.
-rw-r--r--build/bazel/remote/execution/v2/remote_execution.proto3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto
index 3d02691..a19c7f3 100644
--- a/build/bazel/remote/execution/v2/remote_execution.proto
+++ b/build/bazel/remote/execution/v2/remote_execution.proto
@@ -1306,7 +1306,8 @@ message GetTreeRequest {
// A page token, which must be a value received in a previous
// [GetTreeResponse][build.bazel.remote.execution.v2.GetTreeResponse].
- // If present, the server will use it to return the following page of results.
+ // If present, the server will use that token as an offset, returning only
+ // that page and the ones that succeed it.
string page_token = 4;
}