diff options
author | Sudheer Shanka <sudheersai@google.com> | 2020-06-26 18:35:18 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-06-26 18:35:18 +0000 |
commit | 9cd29ba6d699ac748cdd45da27b9b82372ebde1a (patch) | |
tree | 0edabbcbe3445abbbdbef95755a58e7d95cd108b | |
parent | d76fa360e7ccdb2218dbda54fd339505f6ea443a (diff) | |
parent | 5ed8d50f745dfa61a2023e698221d31bf6b3a95e (diff) |
Merge "Add COUNT_LIMIT_EXCEEDED as reason for BlobCommitted/Leased." into rvc-dev
-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 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; } |