This is an automated email from the ASF dual-hosted git repository. pengxiangyu 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 fe9b2fb803 fix bug, rename thread (#16780) fe9b2fb803 is described below commit fe9b2fb803a40057c10fc197d16f48c1d57810da Author: pengxiangyu <diablo...@163.com> AuthorDate: Wed Feb 15 18:51:22 2023 +0800 fix bug, rename thread (#16780) --- be/src/olap/olap_server.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/olap/olap_server.cpp b/be/src/olap/olap_server.cpp index 409abffc47..b3a5f9a332 100644 --- a/be/src/olap/olap_server.cpp +++ b/be/src/olap/olap_server.cpp @@ -168,9 +168,9 @@ Status StorageEngine::start_bg_threads() { LOG(INFO) << "remove unused remote files thread started"; RETURN_IF_ERROR(Thread::create( - "StorageEngine", "remove_unused_remote_files_thread", + "StorageEngine", "cold_data_compaction_producer_thread", [this]() { this->_cold_data_compaction_producer_callback(); }, - &_remove_unused_remote_files_thread)); + &_cold_data_compaction_producer_thread)); LOG(INFO) << "cold data compaction producer thread started"; RETURN_IF_ERROR(Thread::create( --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org