From 2ea807665228e930065a45c095316ac824467a8c Mon Sep 17 00:00:00 2001 From: Tigran Najaryan <4194920+tigrannajaryan@users.noreply.github.com> Date: Fri, 12 Nov 2021 09:53:22 -0500 Subject: [PATCH] Add server_offered_version to AgentInstallStatus (#11) This is an information field to help with troubleshooting. Suggested here: https://docs.google.com/document/d/1auDpvnhnWGGUlXA5y2tNXt_NVwOlgTi7aLpKm9kvFPM/edit?disco=AAAAQu51GQY --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8473c6e..eebff18 100644 --- a/README.md +++ b/README.md @@ -767,18 +767,25 @@ performed by the agent and has the following structure: ```protobuf message AgentInstallStatus { - bytes server_offered_hash = 1; + string server_offered_version = 1; + bytes server_offered_hash = 2; enum Status { INSTALLED = 0; INSTALLING = 1; INSTALL_FAILED = 2; INSTALL_NO_PERMISSION = 3; } - Status status = 2; - string error_message = 3; + Status status = 3; + string error_message = 4; } ``` +