summaryrefslogtreecommitdiff
path: root/src/mongo/db/mongod_options.cpp
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2015-10-19 17:18:15 -0400
committerGeert Bosch <geert@mongodb.com>2015-10-19 21:11:49 -0400
commitfff3d002adab9f3b68c38ee80805bb171705de45 (patch)
tree2f759a5d1fdc5fe674dc575c5ca0b893be2761a8 /src/mongo/db/mongod_options.cpp
parent5dd28a39ea5f1d22003355fe532845f153236c83 (diff)
downloadmongo-fff3d002adab9f3b68c38ee80805bb171705de45.tar.gz
SERVER-20992: Fix type error in configuration argument
Diffstat (limited to 'src/mongo/db/mongod_options.cpp')
-rw-r--r--src/mongo/db/mongod_options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/mongod_options.cpp b/src/mongo/db/mongod_options.cpp
index 95fb949de86..9b8892e2b9c 100644
--- a/src/mongo/db/mongod_options.cpp
+++ b/src/mongo/db/mongod_options.cpp
@@ -331,7 +331,7 @@ Status addMongodOptions(moe::OptionSection* options) {
storage_options.addOptionChaining("storage.journal.commitIntervalMs",
"journalCommitInterval",
- moe::Unsigned,
+ moe::Int,
"how often to group/batch commit (ms)",
"storage.mmapv1.journal.commitIntervalMs");