-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
APP-6033: Add previous page token pagination to logs #551
base: main
Are you sure you want to change the base?
Conversation
@@ -651,6 +651,7 @@ message GetRobotPartLogsRequest { | |||
message GetRobotPartLogsResponse { | |||
repeated common.v1.LogEntry logs = 1; | |||
string next_page_token = 2; | |||
optional string previous_page_token = 3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this match the scope? Can you link it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh I meant the scope doc API change: Kim's doc that was approved in doc scope review
Adds the optional string
previous_page_token
to theGetRobotPartLogsResponse
proto.When this token is present in the response, it can be passed back into the
GetRobotPartLogsRequest
to paginate to the previous page, used for live log tailing.