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 <77738092+hhoflittlefish...@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-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org