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
2 people authored and brother-jin committed Aug 1, 2024
1 parent 6a6f71f commit f4dcc56
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 @@ -623,7 +623,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 f4dcc56

Please sign in to comment.