This is an automated email from the ASF dual-hosted git repository.
liaoxin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new e200cd71ed7 [fix](load)fix the error msg with stack (#56640)
e200cd71ed7 is described below
commit e200cd71ed7bc41ce29904410256ef7da6f133bd
Author: Refrain <[email protected]>
AuthorDate: Tue Sep 30 10:56:30 2025 +0800
[fix](load)fix the error msg with stack (#56640)
---
be/src/runtime/stream_load/stream_load_context.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/be/src/runtime/stream_load/stream_load_context.cpp
b/be/src/runtime/stream_load/stream_load_context.cpp
index 8d4bb8ae277..65ec1171493 100644
--- a/be/src/runtime/stream_load/stream_load_context.cpp
+++ b/be/src/runtime/stream_load/stream_load_context.cpp
@@ -83,7 +83,7 @@ std::string StreamLoadContext::to_json() const {
if (status.ok()) {
writer.String("OK");
} else {
- writer.String(status.to_string().c_str());
+ writer.String(status.to_string_no_stack().c_str());
}
// number_load_rows
writer.Key("NumberTotalRows");
@@ -340,7 +340,7 @@ std::string StreamLoadContext::to_json_for_mini_load()
const {
if (status.ok() || show_ok) {
writer.String("OK");
} else {
- writer.String(status.to_string().c_str());
+ writer.String(status.to_string_no_stack().c_str());
}
writer.EndObject();
return s.GetString();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]