summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-07-15 16:40:40 -0400
committerEliot Horowitz <eliot@10gen.com>2011-07-15 16:40:40 -0400
commitb3fc313dc0fd96eef3280f7dd8d3566b77f6ed39 (patch)
treeb01ce51a55dd4220abf5a210a592b8ae12d80cc7 /shell
parent5eaf9a15c9bbe3341270c9cfed53245d9e288ef5 (diff)
downloadmongo-b3fc313dc0fd96eef3280f7dd8d3566b77f6ed39.tar.gz
standardize on 40mb oplog size
Diffstat (limited to 'shell')
-rwxr-xr-xshell/servers.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/servers.js b/shell/servers.js
index 75ce7d9ae47..f22ffa685e7 100755
--- a/shell/servers.js
+++ b/shell/servers.js
@@ -76,7 +76,7 @@ startMongodTest = function (port, dirname, restart, extraOptions ) {
dbpath: "/data/db/" + dirname,
noprealloc: "",
smallfiles: "",
- oplogSize: "10",
+ oplogSize: "40",
nohttpinterface: ""
};
@@ -889,7 +889,7 @@ ReplTest.prototype.getOptions = function( master , extra , putBinaryFirst, norep
extra = {};
if ( ! extra.oplogSize )
- extra.oplogSize = "10";
+ extra.oplogSize = "40";
var a = []
if ( putBinaryFirst )
@@ -1026,7 +1026,7 @@ ReplSetTest = function( opts ){
this.name = opts.name || "testReplSet";
this.host = opts.host || getHostName();
this.numNodes = opts.nodes || 0;
- this.oplogSize = opts.oplogSize || 20;
+ this.oplogSize = opts.oplogSize || 40;
this.useSeedList = opts.useSeedList || false;
this.bridged = opts.bridged || false;
this.ports = [];