Skip to content

Commit

Permalink
follow clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
lupengfan1 committed Dec 31, 2024
1 parent 1f72008 commit 0101b69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/block_service/hdfs/hdfs_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

DSN_DEFINE_uint64(replication,
hdfs_read_batch_size_bytes,
(64 << 20),
64U << 20,
"hdfs read batch size, the default value is 64MB");
DSN_TAG_VARIABLE(hdfs_read_batch_size_bytes, FT_MUTABLE);

Expand All @@ -58,7 +58,7 @@ DSN_TAG_VARIABLE(hdfs_write_limit_rate_mb_per_sec, FT_MUTABLE);

DSN_DEFINE_uint64(replication,
hdfs_write_batch_size_bytes,
(64 << 20),
64U << 20,
"hdfs write batch size, the default value is 64MB");
DSN_TAG_VARIABLE(hdfs_write_batch_size_bytes, FT_MUTABLE);

Expand Down

0 comments on commit 0101b69

Please sign in to comment.