Skip to content

Commit

Permalink
dcheck core
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijchen committed Dec 27, 2023
1 parent 67716fc commit 340fb1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/sink/writer/vtablet_writer_v2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ Status VTabletWriterV2::close(Status exec_status) {
for (const auto& stream : streams->streams()) {
LOG(INFO) << "begin waiting stream close load_id=" << print_id(_load_id)
<< ", stream_id=" << stream->stream_id();
RETURN_IF_ERROR(stream->close_wait());
DCHECK(stream->close_wait().ok());
LOG(INFO) << "end waiting stream close load_id=" << print_id(_load_id)
<< ", stream_id=" << stream->stream_id();
}
Expand Down

0 comments on commit 340fb1a

Please sign in to comment.