We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eef0b81 commit 86fb4e3Copy full SHA for 86fb4e3
engines/ep/src/ep_engine.cc
@@ -850,7 +850,7 @@ cb::engine_errc EventuallyPersistentEngine::setFlushParam(
850
} else if (key == "history_retention_seconds") {
851
configuration.setHistoryRetentionSeconds(std::stoul(val));
852
} else if (key == "history_retention_bytes") {
853
- configuration.setHistoryRetentionBytes(std::stoul(val));
+ configuration.setHistoryRetentionBytes(std::stoull(val));
854
} else {
855
msg = "Unknown config param";
856
rv = cb::engine_errc::invalid_arguments;
0 commit comments