summaryrefslogtreecommitdiff
path: root/cmds
diff options
context:
space:
mode:
authorSudheer Shanka <sudheersai@google.com>2020-06-26 18:50:58 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-06-26 18:50:58 +0000
commitc2643d2de4d7e9181c1929d1d794e416790bb4bc (patch)
tree8aa30b810cf668ddf266e158479bdfce495f88da /cmds
parenta85e5e0587924ba258940a668b4d65653b2c4bf1 (diff)
parent9cd29ba6d699ac748cdd45da27b9b82372ebde1a (diff)
Merge "Add COUNT_LIMIT_EXCEEDED as reason for BlobCommitted/Leased." into rvc-dev am: 9cd29ba6d6
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11980358 Change-Id: I47a819564002ae688edcc33b5921b796bcbcf057
Diffstat (limited to 'cmds')
-rw-r--r--cmds/statsd/src/atoms.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto
index 02c0763c9d83..12e428ce5674 100644
--- a/cmds/statsd/src/atoms.proto
+++ b/cmds/statsd/src/atoms.proto
@@ -4948,6 +4948,8 @@ message BlobCommitted {
ERROR_DURING_COMMIT = 2;
// Commit Failed: Digest of the data did not match Blob digest
DIGEST_MISMATCH = 3;
+ // Commit Failed: Allowed count limit exceeded
+ COUNT_LIMIT_EXCEEDED = 4;
}
optional Result result = 4;
}
@@ -4980,6 +4982,8 @@ message BlobLeased{
LEASE_EXPIRY_INVALID = 4;
// Lease Failed: Leasee has exceeded the total data lease limit
DATA_SIZE_LIMIT_EXCEEDED = 5;
+ // Leasee Failed: Allowed count limit exceeded
+ COUNT_LIMIT_EXCEEDED = 6;
}
optional Result result = 4;
}