[FIX] remove defensive check when read tx data in tx table

This commit is contained in:
ZenoWang
2023-01-28 15:40:58 +08:00
committed by ob-robot
parent 40f2f0e0c6
commit 2663894581
6 changed files with 43 additions and 128 deletions

View File

@ -779,7 +779,7 @@ int ObLS::online_tx_()
int ret = OB_SUCCESS;
if (OB_FAIL(ls_tx_svr_.online())) {
LOG_WARN("ls tx service online failed", K(ret), K(ls_meta_));
} else if (OB_FAIL(tx_table_.prepare_online())) {
} else if (OB_FAIL(tx_table_.online())) {
LOG_WARN("tx table online failed", K(ret), K(ls_meta_));
}
return ret;