avoid redundant log output

This commit is contained in:
hiddenbomb
2024-04-07 08:06:49 +00:00
committed by ob-robot
parent e85d9ab53b
commit 0c578dab2e

View File

@ -1929,7 +1929,9 @@ int ObLSTabletService::direct_get_tablet(const common::ObTabletID &tablet_id, Ob
const ObTabletMapKey key(ls_->get_ls_id(), tablet_id);
if (CLICK_FAIL(ObTabletCreateDeleteHelper::get_tablet(key, handle))) {
LOG_WARN("failed to get tablet from t3m", K(ret), K(key));
if (OB_TABLET_NOT_EXIST != ret) {
LOG_WARN("failed to get tablet from t3m", K(ret), K(key));
}
}
return ret;