Search before asking
Version
master
What's Wrong?
Based on the bug #32489 , reviewed master code.
After iterator returned by using find must be validated with map.end() before use.
CloudTxnDeleteBitmapCache::remove_expired_tablet_txn_info
auto txn_iter = _txn_map.find(iter->second);
if (iter->first == txn_iter->second.txn_expiration) {
What You Expected?
code should not have a access of iterator without checking map.end()
How to Reproduce?
No response
Anything Else?
fixed similar problems.
Are you willing to submit PR?
Code of Conduct