You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2020/08/19 09:40:00 UTC

[incubator-doris] branch master updated: [Bug] Remove RECOVER_TABLET worker pool to make ASAN compile happy (#4392)

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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new ea6d7c2  [Bug] Remove RECOVER_TABLET worker pool to make ASAN compile happy (#4392)
ea6d7c2 is described below

commit ea6d7c281d171114feb378546f9ad1ccb2e32fac
Author: Mingyu Chen <mo...@gmail.com>
AuthorDate: Wed Aug 19 17:39:46 2020 +0800

    [Bug] Remove RECOVER_TABLET worker pool to make ASAN compile happy (#4392)
    
    Co-authored-by: morningman <ch...@baidu.com>
---
 be/src/agent/agent_server.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/be/src/agent/agent_server.cpp b/be/src/agent/agent_server.cpp
index 08e7b5b..e60d9e6 100644
--- a/be/src/agent/agent_server.cpp
+++ b/be/src/agent/agent_server.cpp
@@ -84,7 +84,6 @@ AgentServer::AgentServer(ExecEnv* exec_env, const TMasterInfo& master_info) :
     CREATE_AND_START_POOL(MAKE_SNAPSHOT, _make_snapshot_workers);
     CREATE_AND_START_POOL(RELEASE_SNAPSHOT, _release_snapshot_workers);
     CREATE_AND_START_POOL(MOVE, _move_dir_workers);
-    CREATE_AND_START_POOL(RECOVER_TABLET, _recover_tablet_workers);
     CREATE_AND_START_POOL(UPDATE_TABLET_META_INFO, _update_tablet_meta_info_workers);
 #undef CREATE_AND_START_POOL
 
@@ -145,7 +144,6 @@ void AgentServer::submit_tasks(TAgentResult& agent_result, const vector<TAgentTa
         HANDLE_TYPE(TTaskType::MAKE_SNAPSHOT, _make_snapshot_workers, snapshot_req);
         HANDLE_TYPE(TTaskType::RELEASE_SNAPSHOT, _release_snapshot_workers, release_snapshot_req);
         HANDLE_TYPE(TTaskType::MOVE, _move_dir_workers, move_dir_req);
-        HANDLE_TYPE(TTaskType::RECOVER_TABLET, _recover_tablet_workers, recover_tablet_req);
         HANDLE_TYPE(TTaskType::UPDATE_TABLET_META_INFO,
                     _update_tablet_meta_info_workers,
                     update_tablet_meta_info_req);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org