diff options
author | 2020-06-23 19:01:37 -0700 | |
---|---|---|
committer | 2020-06-23 19:01:37 -0700 | |
commit | 5ed8d50f745dfa61a2023e698221d31bf6b3a95e (patch) | |
tree | 93f834888dbd35566658be3d4d0d6366f48c475f /cmds | |
parent | 38c2ca7698e3040a3c3eda9ac5dd588358f9b853 (diff) |
Add COUNT_LIMIT_EXCEEDED as reason for BlobCommitted/Leased.
Bug: 144155167
Bug: 159754450
Test: atest android.cts.statsd.atom.UidAtomTests
Change-Id: Ic6a7d81833f98ea88e7543ac9c1710871ed7582b
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/statsd/src/atoms.proto | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 663f91005c3e..ab689adf3b26 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -4950,6 +4950,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; } @@ -4982,6 +4984,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; } |