This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch dev-1.1.2 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/dev-1.1.2 by this push: new 6b28494577 [Bugfix](coredump) fix coredump cause by fmt::format param malformt (#12138) 6b28494577 is described below commit 6b28494577e1d26a2581f68b338f3c7a22c5de72 Author: Zhengguo Yang <yangz...@gmail.com> AuthorDate: Mon Aug 29 12:45:22 2022 +0800 [Bugfix](coredump) fix coredump cause by fmt::format param malformt (#12138) fix coredump cause by fmt::format param malformt --- be/src/runtime/memory/mem_tracker_limiter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/runtime/memory/mem_tracker_limiter.cpp b/be/src/runtime/memory/mem_tracker_limiter.cpp index 4b268858b9..4078564041 100644 --- a/be/src/runtime/memory/mem_tracker_limiter.cpp +++ b/be/src/runtime/memory/mem_tracker_limiter.cpp @@ -283,7 +283,7 @@ Status MemTrackerLimiter::mem_limit_exceeded(const std::string& msg, MemTrackerLimiter* print_log_usage_tracker = nullptr; if (exceeded_tracker != nullptr) { detail += fmt::format( - "exceeded_tracker={}, limit={}B, peak_used={}B, current_used={B}>, " + "exceeded_tracker={}, limit={}B, peak_used={}B, current_used={}B>, " "executing_msg:<{}>", exceeded_tracker->label(), exceeded_tracker->limit(), exceeded_tracker->peak_consumption(), exceeded_tracker->consumption(), msg); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org