Skip to content

Commit

Permalink
Fixed EXPERIMENTAL_BUCKETLIST_DB_INDEX_PAGE_SIZE_EXPONENT (stellar#4378)
Browse files Browse the repository at this point in the history
# Description

Resolves stellar#4377

# Checklist
- [x] Reviewed the
[contributing](https://github.com/stellar/stellar-core/blob/master/CONTRIBUTING.md#submitting-changes)
document
- [x] Rebased on top of master (no merge commits)
- [x] Ran `clang-format` v8.0.0 (via `make format` or the Visual Studio
extension)
- [x] Compiles
- [x] Ran all tests
- [ ] If change impacts performance, include supporting evidence per the
[performance
document](https://github.com/stellar/stellar-core/blob/master/performance-eval/performance-eval.md)
  • Loading branch information
SirTyson authored Jul 8, 2024
2 parents 2ba9f8d + c590a08 commit 07e8569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ Config::processConfig(std::shared_ptr<cpptoml::table> t)
else if (item.first ==
"EXPERIMENTAL_BUCKETLIST_DB_INDEX_PAGE_SIZE_EXPONENT")
{
BUCKETLIST_DB_INDEX_CUTOFF = readInt<size_t>(item);
BUCKETLIST_DB_INDEX_PAGE_SIZE_EXPONENT = readInt<size_t>(item);
CLOG_WARNING(
Bucket,
"EXPERIMENTAL_BUCKETLIST_DB_INDEX_PAGE_SIZE_EXPONENT is "
Expand Down

0 comments on commit 07e8569

Please sign in to comment.