Skip to content

Commit

Permalink
clang-format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ruojieranyishen committed Jul 7, 2024
1 parent b322463 commit 85dc869
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/replica/bulk_load/replica_bulk_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -535,10 +535,10 @@ void replica_bulk_loader::download_sst_file(const std::string &remote_dir,
{
if (_status != bulk_load_status::BLS_DOWNLOADING) {
LOG_WARNING_PREFIX("Cancel download_sst_file task, because bulk_load local_status is {}. "
"local_dir: {} , file_index is {}",
enum_to_string(_status),
local_dir,
file_index);
"local_dir: {} , file_index is {}.",
enum_to_string(_status),
local_dir,
file_index);
return;
}
file_meta f_meta;
Expand All @@ -553,8 +553,8 @@ void replica_bulk_loader::download_sst_file(const std::string &remote_dir,
}
if (!get_f_meta) {
LOG_WARNING_PREFIX("sst file index {} exceeds number of bulkload sst files, Cancel "
"download_sst_file task.",
file_index);
"download_sst_file task.",
file_index);
return;
}
uint64_t f_size = 0;
Expand Down

0 comments on commit 85dc869

Please sign in to comment.