[CP] fix wrong condition of faststack

This commit is contained in:
zhjc1124 2024-02-10 07:39:07 +00:00 committed by ob-robot
parent 07fa49965f
commit 4359757e51

View File

@ -1519,7 +1519,9 @@ int ObTenant::recv_request(ObRequest &req)
if (OB_SUCC(ret)) {
ObTenantStatEstGuard guard(id_);
EVENT_INC(REQUEST_ENQUEUE_COUNT);
} else if (OB_SIZE_OVERFLOW == ret || req_queue_.size() >= FASTSTACK_REQ_QUEUE_SIZE_THRESHOLD) {
}
if (OB_SIZE_OVERFLOW == ret || req_queue_.size() >= FASTSTACK_REQ_QUEUE_SIZE_THRESHOLD) {
IGNORE_RETURN faststack();
}