From 8c4f955c3e5f6e0d86c0a830ce6b5f6e7d5defe7 Mon Sep 17 00:00:00 2001 From: obdev Date: Fri, 8 Nov 2024 10:14:40 +0000 Subject: [PATCH] fix io ret errno --- src/share/io/ob_io_define.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/share/io/ob_io_define.cpp b/src/share/io/ob_io_define.cpp index ccc1a8109..acd9d5718 100644 --- a/src/share/io/ob_io_define.cpp +++ b/src/share/io/ob_io_define.cpp @@ -1905,7 +1905,7 @@ void ObIOHandle::estimate() } static const int64_t LONG_IO_PRINT_TRIGGER_US = 1000L * 1000L * 3L; // 3s if (result_delay > LONG_IO_PRINT_TRIGGER_US) { - LOG_WARN_RET(OB_ERR_UNEXPECTED, "io result wait too long", KPC(result_), K(result_delay)); + LOG_WARN_RET(OB_ERR_TOO_MUCH_TIME, "io result wait too long", KPC(result_), K(result_delay)); } } }