This is an automated email from the ASF dual-hosted git repository. dataroaring 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 bb409748679 fix load channel may memory leak (#32277) bb409748679 is described below commit bb40974867975dfc3d9a383d315c9026ef5c2c00 Author: HHoflittlefish777 <77738092+hhoflittlefish...@users.noreply.github.com> AuthorDate: Sun Mar 17 11:05:30 2024 +0800 fix load channel may memory leak (#32277) --- be/src/vec/sink/writer/vtablet_writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/writer/vtablet_writer.cpp b/be/src/vec/sink/writer/vtablet_writer.cpp index 97e8ffe1e77..c06303e6a9e 100644 --- a/be/src/vec/sink/writer/vtablet_writer.cpp +++ b/be/src/vec/sink/writer/vtablet_writer.cpp @@ -921,7 +921,7 @@ Status VNodeChannel::close_wait(RuntimeState* state) { _close_time_ms = UnixMillis() - _close_time_ms; if (_cancelled || state->is_cancelled()) { - _cancel_with_msg(state->cancel_reason()); + cancel(state->cancel_reason()); } if (_add_batches_finished) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org