Skip to content

Commit

Permalink
[fix](shuffle) Fix local exchange dependency blocking (#38160)
Browse files Browse the repository at this point in the history
## Proposed changes

pick #38151

<!--Describe your changes.-->
  • Loading branch information
Gabriel39 authored Jul 19, 2024
1 parent 947d759 commit 7819c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/runtime/vdata_stream_recvr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ void VDataStreamRecvr::close() {
}
_is_closed = true;
for (auto& it : _sender_to_local_channel_dependency) {
it->set_ready();
it->set_always_ready();
}
for (int i = 0; i < _sender_queues.size(); ++i) {
_sender_queues[i]->close();
Expand Down

0 comments on commit 7819c75

Please sign in to comment.