allow rk throttle reason being UNSET

This commit is contained in:
Xiaoxi Wang 2022-08-19 14:48:48 -07:00
parent 2d7a7d7273
commit ad27426802
1 changed files with 2 additions and 1 deletions

View File

@ -353,6 +353,7 @@ void RkTagThrottleCollection::incrementBusyTagCount(TagThrottledReason reason) {
} else if (reason == TagThrottledReason::BUSY_WRITE) {
++busyWriteTagCount;
} else {
ASSERT(false);
ASSERT(reason == TagThrottledReason::UNSET);
CODE_PROBE(true, "tag throttled reason is unset, probable because of upgrading");
}
}