diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2018-12-20 11:17:42 -0500 |
---|---|---|
committer | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2018-12-21 18:06:44 -0500 |
commit | d6b697e0c546521e5c3739ec45160512d149a368 (patch) | |
tree | 6ad28fcd2f64e70b82ac68e9e107a4d0cbefe6e3 | |
parent | 98ae5d550cf102f0519b801bdbfcf90c62e6ea1a (diff) | |
download | mongo-d6b697e0c546521e5c3739ec45160512d149a368.tar.gz |
SERVER-38434 add missing comma to _openWiredTiger config
(cherry picked from commit a171bb5a032ccbed77b1a547ac46bda1894b5429)
-rw-r--r-- | src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp index fbd5f6ad3fe..c81830eb1b5 100644 --- a/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp +++ b/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp @@ -485,7 +485,7 @@ WiredTigerKVEngine::WiredTigerKVEngine(const std::string& canonicalName, ss << extraOpenOptions; if (_readOnly) { invariant(!_durable); - ss << "readonly=true,"; + ss << ",readonly=true,"; } if (!_durable && !_readOnly) { // If we started without the journal, but previously used the journal then open with the |