From 03f8f1d9c5dc6515164a8bf10d37cdbcf56e47e5 Mon Sep 17 00:00:00 2001 From: obdev Date: Fri, 9 Feb 2024 02:13:09 +0000 Subject: [PATCH] use OB_TMP_FAIL, instead of OB_FAIL --- src/storage/tablet/ob_tablet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/tablet/ob_tablet.cpp b/src/storage/tablet/ob_tablet.cpp index a22f2bfa79..858081b716 100644 --- a/src/storage/tablet/ob_tablet.cpp +++ b/src/storage/tablet/ob_tablet.cpp @@ -2410,7 +2410,7 @@ int ObTablet::inc_ref_with_macro_iter(ObMacroInfoIterator ¯o_iter, bool &inc LOG_WARN("fail to free block", K(ret), K(block_info)); } #ifndef OB_BUILD_RPM - if (OB_FAIL(tmp_ret)) { + if (OB_TMP_FAIL(tmp_ret)) { // do nothing } else if (OB_TMP_FAIL(print_arr.push_back(block_info.macro_id_))) { LOG_WARN("fail to push macro id into print array", K(tmp_ret));