diff --git a/fdbserver/RkTagThrottleCollection.cpp b/fdbserver/RkTagThrottleCollection.cpp index 83e6c1e1eb..a995238bd5 100644 --- a/fdbserver/RkTagThrottleCollection.cpp +++ b/fdbserver/RkTagThrottleCollection.cpp @@ -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, probably because of upgrading"); } }