fix tablet migration stack overflow

This commit is contained in:
oceanoverflow
2024-02-08 00:08:59 +00:00
committed by ob-robot
parent 4adf052cef
commit 5673c9f738

View File

@ -4168,7 +4168,7 @@ int ObTabletGroupMigrationTask::try_remove_tablets_info_()
LOG_WARN("failed to check is in retry", K(ret), KPC(ctx_), KP(dag)); LOG_WARN("failed to check is in retry", K(ret), KPC(ctx_), KP(dag));
} else if (!is_in_retry) { } else if (!is_in_retry) {
//do nothing //do nothing
} else if (OB_FAIL(try_remove_tablets_info_())) { } else if (OB_FAIL(remove_tablets_info_())) {
LOG_WARN("failed to try remove tablets info", K(ret), KPC(ctx_)); LOG_WARN("failed to try remove tablets info", K(ret), KPC(ctx_));
} }
return ret; return ret;