From 6c8e809692948217f35780542992045baf7728e2 Mon Sep 17 00:00:00 2001 From: oceanoverflow Date: Mon, 18 Dec 2023 21:17:36 +0000 Subject: [PATCH] fix tablet migration stack overflow --- src/storage/high_availability/ob_ls_migration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/high_availability/ob_ls_migration.cpp b/src/storage/high_availability/ob_ls_migration.cpp index 1eb198ebc8..5772e574c1 100644 --- a/src/storage/high_availability/ob_ls_migration.cpp +++ b/src/storage/high_availability/ob_ls_migration.cpp @@ -4168,7 +4168,7 @@ int ObTabletGroupMigrationTask::try_remove_tablets_info_() LOG_WARN("failed to check is in retry", K(ret), KPC(ctx_), KP(dag)); } else if (!is_in_retry) { //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_)); } return ret;