This is an automated email from the ASF dual-hosted git repository.

panxiaolei pushed a commit to branch pick_1102
in repository https://gitbox.apache.org/repos/asf/doris.git

commit 41eb5afeaa9b0b7b4a47544a081681a470e025a4
Author: Pxl <[email protected]>
AuthorDate: Mon Oct 30 10:36:01 2023 +0800

    do not print stack when stream load catch failed status on thrift (#26062)
    
    do not print stack when stream load catch failed status on thrift
---
 be/src/runtime/stream_load/stream_load_executor.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/runtime/stream_load/stream_load_executor.cpp 
b/be/src/runtime/stream_load/stream_load_executor.cpp
index 1ecba95748a..4a80eb35ca6 100644
--- a/be/src/runtime/stream_load/stream_load_executor.cpp
+++ b/be/src/runtime/stream_load/stream_load_executor.cpp
@@ -260,7 +260,7 @@ Status StreamLoadExecutor::begin_txn(StreamLoadContext* 
ctx) {
 #else
         result = k_stream_load_begin_result;
 #endif
-        status = Status::create(result.status);
+        status = Status::create<false>(result.status);
     }
     g_stream_load_begin_txn_latency << duration_ns / 1000;
     if (!status.ok()) {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to