Skip to content

Commit

Permalink
[Fix](load) The value of the index id printed in the log is incorrect (
Browse files Browse the repository at this point in the history
  • Loading branch information
liaoxin01 committed Aug 9, 2024
1 parent b4e1e90 commit 6ba47a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions be/src/runtime/tablets_channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ Status BaseTabletsChannel::open(const PTabletWriterOpenRequest& request) {
if (_state == kOpened || _state == kFinished) {
return Status::OK();
}
LOG(INFO) << fmt::format("open tablets channel of index {}, tablets num: {} timeout(s): {}",
_index_id, request.tablets().size(), request.load_channel_timeout_s());
LOG(INFO) << fmt::format("open tablets channel {}, tablets num: {} timeout(s): {}",
_key.to_string(), request.tablets().size(),
request.load_channel_timeout_s());
_txn_id = request.txn_id();
_index_id = request.index_id();
_schema = std::make_shared<OlapTableSchemaParam>();
Expand Down

0 comments on commit 6ba47a5

Please sign in to comment.