[BUGFIX] fix if ob fail

This commit is contained in:
skylhd
2023-08-03 10:12:34 +00:00
committed by ob-robot
parent 0b9aa70ad4
commit d93beedd3f

View File

@ -943,11 +943,11 @@ int ObPersistentLobApator::inner_get_tablet(
} else if (OB_ISNULL(ls_handle.get_ls())) { } else if (OB_ISNULL(ls_handle.get_ls())) {
ret = OB_ERR_UNEXPECTED; ret = OB_ERR_UNEXPECTED;
LOG_ERROR("ls should not be null", K(ret)); LOG_ERROR("ls should not be null", K(ret));
} else if (ls_handle.get_ls()->get_tablet_with_timeout(tablet_id, } else if (OB_FAIL(ls_handle.get_ls()->get_tablet_with_timeout(tablet_id,
handle, handle,
param.timeout_, param.timeout_,
ObMDSGetTabletMode::READ_READABLE_COMMITED, ObMDSGetTabletMode::READ_READABLE_COMMITED,
param.snapshot_.core_.version_)) { param.snapshot_.core_.version_))) {
LOG_WARN("fail to get tablet handle", K(ret), K(tablet_id), K(param)); LOG_WARN("fail to get tablet handle", K(ret), K(tablet_id), K(param));
} }
return ret; return ret;