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 f020b78 commit 257b18a
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 @@ -647,7 +647,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 257b18a

Please sign in to comment.