Fix the issue that the error code was omitted in the bloom filter merge function

This commit is contained in:
qianchanger
2023-05-18 04:46:34 +00:00
committed by ob-robot
parent ce9f6b92fc
commit 33fa474ebd

View File

@ -240,7 +240,7 @@ int ObRFBloomFilterMsg::process_msg_internal(bool &need_free)
}
// create whole bloom filter, no need wait
if (OB_SUCC(ret)) {
if (map.atomic_refactored(dh_key, regen_call)) {
if (OB_FAIL(map.atomic_refactored(dh_key, regen_call))) {
LOG_WARN("fail to update bloom filter msg", K(ret));
}
}