Skip to content

Commit

Permalink
error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Nov 3, 2023
1 parent 6ae67f9 commit aa95bce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/vec/sink/load_stream_stub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ LoadStreamStub::~LoadStreamStub() {

void LoadStreamStub::prepare(); {
if (_is_init) {
LOG(WARNING) << "stream " << _stream_id << "is already inited";
return Status::InternalError("stream {} is already inited", _stream_id);
LOG(WARNING) << "stream " << _stream_id << "is already inited by " << _load_id;
return Status::InternalError("stream {} is already inited by {}", _stream_id, _load_id);
}
++_use_cnt;
}
Expand Down

0 comments on commit aa95bce

Please sign in to comment.