Skip to content

Commit

Permalink
fix min-blob-size parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
wangshaoyi committed Jun 28, 2024
1 parent 1be0738 commit 5652eb5
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 5652eb5

Please sign in to comment.