Browse Source

Merge pull request #4 from relusek/master

In mongodb 2.6.10, when oplog appears in mongodb.conf, service doesnt start up
pull/5/head
Filip Pytloun 7 years ago
parent
commit
67ade90b86
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      mongodb/files/mongodb.conf

+ 3
- 1
mongodb/files/mongodb.conf View File

@@ -51,7 +51,9 @@ setParameter = logLevel={{ server.logging.get('logLevel', 1) }}
# 2=R
# 3=both
# 7=W+some reads
oplog = {{ server.logging.get('oplogLevel', 0) }}
{%- if server.logging.oplogLevel is defined %}
oplog = {{ server.logging.get('oplogLevel') }}
{%- endif %}

# Diagnostic/debugging option
#nocursors = true

Loading…
Cancel
Save