Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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