Skip to content

Commit

Permalink
fix iwyu
Browse files Browse the repository at this point in the history
  • Loading branch information
ruojieranyishen committed Aug 3, 2023
1 parent 31886f1 commit 8b32c78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/app_env_validator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ bool check_rocksdb_write_buffer_size(const std::string &env_value, std::string &
uint64_t val = 0;

if (!dsn::buf2uint64(env_value, val)) {
hint_message = fmt::format("rocksdb.write_buffer_size cannot set this val: {}", env_value);
hint_message = fmt::format("rocksdb.write_buffer_size cannot set this val {}", env_value);
return false;
}
if (val < (16 << 20) || val > (512 << 20)) {
Expand Down
1 change: 1 addition & 0 deletions src/utils/simple_logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include "utils/filesystem.h"
#include "utils/flags.h"
#include "utils/fmt_logging.h"
#include "utils/ports.h"
#include "utils/process_utils.h"
#include "utils/strings.h"
#include "utils/time_utils.h"
Expand Down

0 comments on commit 8b32c78

Please sign in to comment.