summaryrefslogtreecommitdiff
path: root/jstests/readonly
diff options
context:
space:
mode:
authorAdam Midvidy <amidvidy@gmail.com>2016-03-18 14:15:52 -0400
committerAdam Midvidy <amidvidy@gmail.com>2016-03-18 16:24:59 -0400
commit5549920679a5e0a0cd71dde049d7d1528ca9ffde (patch)
tree706dfb790bb21b4238b1d7a2761c930b72425cd2 /jstests/readonly
parentd04989c650e1289e9d1a466c5e3b8e2dda9de782 (diff)
downloadmongo-5549920679a5e0a0cd71dde049d7d1528ca9ffde.tar.gz
SERVER-23130 rename readOnly flag to querableBackupMode and hide it
Diffstat (limited to 'jstests/readonly')
-rw-r--r--jstests/readonly/lib/read_only_test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/readonly/lib/read_only_test.js b/jstests/readonly/lib/read_only_test.js
index c0ee79a7370..0b9b1d44398 100644
--- a/jstests/readonly/lib/read_only_test.js
+++ b/jstests/readonly/lib/read_only_test.js
@@ -32,7 +32,7 @@ StandaloneFixture.prototype.runExecPhase = function runExecPhase(test) {
makeDirectoryReadOnly(this.dbpath);
var options = {
- readOnly: "",
+ queryableBackupMode: "",
noCleanData: true,
dbpath: this.dbpath
};
@@ -73,7 +73,7 @@ ShardedFixture.prototype.runExecPhase = function runExecPhase(test) {
try {
for (var i = 0; i < this.nShards; ++i) {
var opts = {
- readOnly: "",
+ queryableBackupMode: "",
dbpath: this.paths[i]
};