[CP] fix wrong condition of faststack

This commit is contained in:
zhjc1124 2024-02-03 03:50:56 +00:00 committed by ob-robot
parent da6139de0e
commit efc48691df

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();
}