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

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 89862856fe5 print error info when parse_conf_cache_paths failed, so 
that user know how to correct it (#50131)
89862856fe5 is described below

commit 89862856fe502d0e2f9a6662b5254fb109cea0c0
Author: Wen Zhenghu <[email protected]>
AuthorDate: Fri Apr 18 15:37:40 2025 +0800

    print error info when parse_conf_cache_paths failed, so that user know how 
to correct it (#50131)
---
 be/src/runtime/exec_env_init.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/runtime/exec_env_init.cpp b/be/src/runtime/exec_env_init.cpp
index 45c229cd714..1f4678d7ba7 100644
--- a/be/src/runtime/exec_env_init.cpp
+++ b/be/src/runtime/exec_env_init.cpp
@@ -344,7 +344,7 @@ void 
ExecEnv::init_file_cache_factory(std::vector<doris::CachePath>& cache_paths
                 doris::parse_conf_cache_paths(doris::config::file_cache_path, 
cache_paths);
         if (!olap_res) {
             LOG(FATAL) << "parse config file cache path failed, path="
-                       << doris::config::file_cache_path;
+                       << doris::config::file_cache_path << " err: " << 
olap_res;
             exit(-1);
         }
 


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

Reply via email to