Skip to content

Commit

Permalink
[chore](format) fix tablet_meta.cpp (apache#25410)
Browse files Browse the repository at this point in the history
fix format error introduced by apache#25124
The clang format check had a bug before, so PR 25124 can pass the check at that time.
  • Loading branch information
hello-stephen authored Oct 13, 2023
1 parent b56eecb commit 9f67bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/tablet_meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ Status TabletMeta::_save_meta(DataDir* data_dir) {
<< ", schema_hash=" << schema_hash();
}
auto t3 = MonotonicMicros();
auto cost = t3 - t1;
auto cost = t3 - t1;
if (cost > 1 * 1000 * 1000) {
LOG(INFO) << "save tablet(" << full_name() << ") meta too slow. serialize cost " << t2 - t1
<< "(us), serialized binary size: " << meta_binary.length()
Expand Down

0 comments on commit 9f67bcf

Please sign in to comment.