You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by kx...@apache.org on 2023/06/21 12:42:40 UTC

[doris] branch master updated: [fix](load) delete lazy open DCheck when unkown load id (#21083)

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

kxiao 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 b2c4e51be1 [fix](load) delete lazy open DCheck when unkown load id (#21083)
b2c4e51be1 is described below

commit b2c4e51be1a26c77b23a996b0b04b29276ed6ea3
Author: HHoflittlefish777 <77...@users.noreply.github.com>
AuthorDate: Wed Jun 21 20:42:31 2023 +0800

    [fix](load) delete lazy open DCheck when unkown load id (#21083)
---
 be/src/runtime/load_channel_mgr.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/be/src/runtime/load_channel_mgr.cpp b/be/src/runtime/load_channel_mgr.cpp
index a9d94aedb9..e0c5a6848e 100644
--- a/be/src/runtime/load_channel_mgr.cpp
+++ b/be/src/runtime/load_channel_mgr.cpp
@@ -149,7 +149,6 @@ Status LoadChannelMgr::open_partition(const OpenPartitionRequest& params) {
         if (it != _load_channels.end()) {
             channel = it->second;
         } else {
-            DCHECK(false);
             return Status::InternalError("unknown load id, load id=" + load_id.to_string());
         }
     }


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