Change DropboxRateLimiter to rate limit proto tombstones and regular

tombstones separately.

Bug: 255249203
Test: atest ErrorsTest

Change-Id: I258657233ed643615cdd4b7ebdcf6447b1a964af
This commit is contained in:
Siim Sammul
2022-12-01 13:04:55 +00:00
parent 9f25e02fa3
commit 258176bdcc

View File

@@ -341,7 +341,8 @@ public class BootReceiver extends BroadcastReceiver {
// non-proto tombstones, even though proto tombstones do not support including the counter
// of events dropped since rate limiting activated yet.
DropboxRateLimiter.RateLimitResult rateLimitResult =
sDropboxRateLimiter.shouldRateLimit(TAG_TOMBSTONE, processName);
sDropboxRateLimiter.shouldRateLimit(
proto ? TAG_TOMBSTONE_PROTO : TAG_TOMBSTONE, processName);
if (rateLimitResult.shouldRateLimit()) return;
HashMap<String, Long> timestamps = readTimestamps();