Skip to content

Commit a171bb5

Browse files
committed
SERVER-38434 add missing comma to _openWiredTiger config
1 parent f7c5ff6 commit a171bb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ WiredTigerKVEngine::WiredTigerKVEngine(const std::string& canonicalName,
531531
ss << extraOpenOptions;
532532
if (_readOnly) {
533533
invariant(!_durable);
534-
ss << "readonly=true,";
534+
ss << ",readonly=true,";
535535
}
536536
if (!_durable && !_readOnly) {
537537
// If we started without the journal, but previously used the journal then open with the

0 commit comments

Comments
 (0)