Skip to content

Commit

Permalink
fix min-blob-size parse error (OpenAtomFoundation#2767)
Browse files Browse the repository at this point in the history
Co-authored-by: wangshaoyi <[email protected]>
  • Loading branch information
wangshao1 and wangshaoyi authored Jun 28, 2024
1 parent 24b2b7c commit abbe0a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pika_conf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ int PikaConf::Load() {

// rocksdb blob configure
GetConfBool("enable-blob-files", &enable_blob_files_);
GetConfInt64("min-blob-size", &min_blob_size_);
GetConfInt64Human("min-blob-size", &min_blob_size_);
if (min_blob_size_ <= 0) {
min_blob_size_ = 4096;
}
Expand Down

0 comments on commit abbe0a4

Please sign in to comment.