do not validate tx data in ObLS::replay_get_tablet

This commit is contained in:
hiddenbomb
2023-01-28 17:08:24 +08:00
committed by ob-robot
parent 3a88e28154
commit f7061b610e
3 changed files with 4 additions and 4 deletions

View File

@ -1206,7 +1206,7 @@ int ObLS::replay_get_tablet(const common::ObTabletID &tablet_id,
}
} else {
ObTabletTxMultiSourceDataUnit tx_data;
if (OB_FAIL(tablet_handle.get_obj()->get_tx_data(tx_data))) {
if (OB_FAIL(tablet_handle.get_obj()->get_tx_data(tx_data, false/*check_valid*/))) {
LOG_WARN("failed to get tablet tx data", KR(ret), K(tablet_handle));
} else if (ObTabletStatus::CREATING == tx_data.tablet_status_) {
ret = OB_EAGAIN;