This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new fd4fec40158 [fix](mini_download) supress warning log of minidownload (#30993) fd4fec40158 is described below commit fd4fec40158d9ce326037dc775a87d192af618c2 Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> AuthorDate: Thu Feb 8 20:02:22 2024 +0800 [fix](mini_download) supress warning log of minidownload (#30993) --- be/src/runtime/load_path_mgr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/be/src/runtime/load_path_mgr.cpp b/be/src/runtime/load_path_mgr.cpp index c4226606d11..6f5e47b8573 100644 --- a/be/src/runtime/load_path_mgr.cpp +++ b/be/src/runtime/load_path_mgr.cpp @@ -67,6 +67,7 @@ Status LoadPathMgr::init() { _path_vec.clear(); for (auto& path : _exec_env->store_paths()) { _path_vec.push_back(path.path + "/" + MINI_PREFIX); + io::global_local_filesystem()->create_directory(_path_vec.back()); } LOG(INFO) << "Load path configured to [" << boost::join(_path_vec, ",") << "]"; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org