diff options
author | Geert Bosch <geert@mongodb.com> | 2015-10-19 17:18:15 -0400 |
---|---|---|
committer | Geert Bosch <geert@mongodb.com> | 2015-10-19 21:11:49 -0400 |
commit | fff3d002adab9f3b68c38ee80805bb171705de45 (patch) | |
tree | 2f759a5d1fdc5fe674dc575c5ca0b893be2761a8 /src/mongo/db/mongod_options.cpp | |
parent | 5dd28a39ea5f1d22003355fe532845f153236c83 (diff) | |
download | mongo-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.cpp | 2 |
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"); |