From 0ade85457d84aa6d5553a0fc1680c630e9917451 Mon Sep 17 00:00:00 2001 From: Omer Nebil Yaveroglu Date: Fri, 24 Jan 2020 12:47:46 +0000 Subject: [PATCH] Fix the type error in the IntegrityCheckResultReported proto. Note that this change is submitted just an hour ago and there are no record on it. The error occured because of the refactoring from int to long during the time the review took place. Test: followed http://go/westworld-local-development and locally verified working Bug:147095027 Change-Id: Ib48074108ab2454b8c3d2eb457a69be2ddbffa0a --- cmds/statsd/src/atoms.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 4c26786d18e3f..795062675f3f7 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -8082,7 +8082,7 @@ message UserspaceRebootReported { message IntegrityCheckResultReported { optional string package_name = 1; optional string app_certificate_hash = 2; - optional int32 version_code = 3; + optional int64 version_code = 3; optional string installer_package_name = 4; enum Response { UNKNOWN = 0;